-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnumResponsesGen2.cs
57 lines (56 loc) · 1.35 KB
/
EnumResponsesGen2.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
namespace Nls.Base79 {
namespace EnumResponsesGen2 {
public enum TypicalItem : int {
Missing = -7,
ValidSkip = -4,
InvalidSkip = -3,
DoNotKnow = -2,
Refusal = -1,
}
public enum ShareBiodadGen2 : int {
Missing = -7,
DoNotKnow = -2,
Refusal = -1,
Yes = 1,
No = 2,
NotSure = 3,
}
public enum FatherOfGen2LiveInHH : short {
InvalidSkip = -3,
DoNotKnow = -2,
Refusal = -1,
No = 0,
Yes = 1,
}
public enum FatherOfGen2Living : short {
InvalidSkip = -3,
DoNotKnow = -2,
Refusal = -1,
No = 0,
Yes = 1,
}
public enum FatherAsthma : int {
Missing = -7,
DoNotKnow = -2,
Refusal = -1,
No = 0,
Yes = 1,
}
public enum KidBioCount : int {//Y21486.00
Missing = -7,
Zero = 0,
One = 1,
Two = 2,
Three = 3,
Four = 4,
Five = 5,
Six = 6,
Seven = 7,
Eight = 8,
Nine = 9,
}
}
}
//public enum DateOfBirthMonthNonResponses : int {//C00055.00
//}