diff options
Diffstat (limited to 'src/WixToolset.Data/Tuples/_ValidationTuple.cs')
-rw-r--r-- | src/WixToolset.Data/Tuples/_ValidationTuple.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/WixToolset.Data/Tuples/_ValidationTuple.cs b/src/WixToolset.Data/Tuples/_ValidationTuple.cs index 3bcd064c..869b19d8 100644 --- a/src/WixToolset.Data/Tuples/_ValidationTuple.cs +++ b/src/WixToolset.Data/Tuples/_ValidationTuple.cs | |||
@@ -55,61 +55,61 @@ namespace WixToolset.Data.Tuples | |||
55 | 55 | ||
56 | public string Table | 56 | public string Table |
57 | { | 57 | { |
58 | get => (string)this.Fields[(int)_ValidationTupleFields.Table]?.Value; | 58 | get => (string)this.Fields[(int)_ValidationTupleFields.Table]; |
59 | set => this.Set((int)_ValidationTupleFields.Table, value); | 59 | set => this.Set((int)_ValidationTupleFields.Table, value); |
60 | } | 60 | } |
61 | 61 | ||
62 | public string Column | 62 | public string Column |
63 | { | 63 | { |
64 | get => (string)this.Fields[(int)_ValidationTupleFields.Column]?.Value; | 64 | get => (string)this.Fields[(int)_ValidationTupleFields.Column]; |
65 | set => this.Set((int)_ValidationTupleFields.Column, value); | 65 | set => this.Set((int)_ValidationTupleFields.Column, value); |
66 | } | 66 | } |
67 | 67 | ||
68 | public string Nullable | 68 | public string Nullable |
69 | { | 69 | { |
70 | get => (string)this.Fields[(int)_ValidationTupleFields.Nullable]?.Value; | 70 | get => (string)this.Fields[(int)_ValidationTupleFields.Nullable]; |
71 | set => this.Set((int)_ValidationTupleFields.Nullable, value); | 71 | set => this.Set((int)_ValidationTupleFields.Nullable, value); |
72 | } | 72 | } |
73 | 73 | ||
74 | public int MinValue | 74 | public int MinValue |
75 | { | 75 | { |
76 | get => (int)this.Fields[(int)_ValidationTupleFields.MinValue]?.Value; | 76 | get => (int)this.Fields[(int)_ValidationTupleFields.MinValue]; |
77 | set => this.Set((int)_ValidationTupleFields.MinValue, value); | 77 | set => this.Set((int)_ValidationTupleFields.MinValue, value); |
78 | } | 78 | } |
79 | 79 | ||
80 | public int MaxValue | 80 | public int MaxValue |
81 | { | 81 | { |
82 | get => (int)this.Fields[(int)_ValidationTupleFields.MaxValue]?.Value; | 82 | get => (int)this.Fields[(int)_ValidationTupleFields.MaxValue]; |
83 | set => this.Set((int)_ValidationTupleFields.MaxValue, value); | 83 | set => this.Set((int)_ValidationTupleFields.MaxValue, value); |
84 | } | 84 | } |
85 | 85 | ||
86 | public string KeyTable | 86 | public string KeyTable |
87 | { | 87 | { |
88 | get => (string)this.Fields[(int)_ValidationTupleFields.KeyTable]?.Value; | 88 | get => (string)this.Fields[(int)_ValidationTupleFields.KeyTable]; |
89 | set => this.Set((int)_ValidationTupleFields.KeyTable, value); | 89 | set => this.Set((int)_ValidationTupleFields.KeyTable, value); |
90 | } | 90 | } |
91 | 91 | ||
92 | public int KeyColumn | 92 | public int KeyColumn |
93 | { | 93 | { |
94 | get => (int)this.Fields[(int)_ValidationTupleFields.KeyColumn]?.Value; | 94 | get => (int)this.Fields[(int)_ValidationTupleFields.KeyColumn]; |
95 | set => this.Set((int)_ValidationTupleFields.KeyColumn, value); | 95 | set => this.Set((int)_ValidationTupleFields.KeyColumn, value); |
96 | } | 96 | } |
97 | 97 | ||
98 | public string Category | 98 | public string Category |
99 | { | 99 | { |
100 | get => (string)this.Fields[(int)_ValidationTupleFields.Category]?.Value; | 100 | get => (string)this.Fields[(int)_ValidationTupleFields.Category]; |
101 | set => this.Set((int)_ValidationTupleFields.Category, value); | 101 | set => this.Set((int)_ValidationTupleFields.Category, value); |
102 | } | 102 | } |
103 | 103 | ||
104 | public string Set | 104 | public string Set |
105 | { | 105 | { |
106 | get => (string)this.Fields[(int)_ValidationTupleFields.Set]?.Value; | 106 | get => (string)this.Fields[(int)_ValidationTupleFields.Set]; |
107 | set => this.Set((int)_ValidationTupleFields.Set, value); | 107 | set => this.Set((int)_ValidationTupleFields.Set, value); |
108 | } | 108 | } |
109 | 109 | ||
110 | public string Description | 110 | public string Description |
111 | { | 111 | { |
112 | get => (string)this.Fields[(int)_ValidationTupleFields.Description]?.Value; | 112 | get => (string)this.Fields[(int)_ValidationTupleFields.Description]; |
113 | set => this.Set((int)_ValidationTupleFields.Description, value); | 113 | set => this.Set((int)_ValidationTupleFields.Description, value); |
114 | } | 114 | } |
115 | } | 115 | } |