File tree Expand file tree Collapse file tree 15 files changed +15
-15
lines changed
Api/Databases/RequestParams/DatabasesCreateParameters/PropertySchema Expand file tree Collapse file tree 15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ public class SelectOptionSchema
10
10
11
11
[ JsonProperty ( "color" ) ]
12
12
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
13
- public Color Color { get ; set ; }
13
+ public Color ? Color { get ; set ; }
14
14
}
15
15
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class Info
18
18
19
19
[ JsonProperty ( "color" ) ]
20
20
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
21
- public Color Color { get ; set ; }
21
+ public Color ? Color { get ; set ; }
22
22
23
23
[ JsonProperty ( "children" ) ]
24
24
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class Info
21
21
22
22
[ JsonProperty ( "color" ) ]
23
23
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
24
- public Color Color { get ; set ; }
24
+ public Color ? Color { get ; set ; }
25
25
26
26
[ JsonProperty ( "children" ) ]
27
27
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class Info
20
20
21
21
[ JsonProperty ( "color" ) ]
22
22
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
23
- public Color Color { get ; set ; }
23
+ public Color ? Color { get ; set ; }
24
24
}
25
25
}
26
26
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class Info
20
20
21
21
[ JsonProperty ( "color" ) ]
22
22
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
23
- public Color Color { get ; set ; }
23
+ public Color ? Color { get ; set ; }
24
24
}
25
25
}
26
26
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public class Info
20
20
21
21
[ JsonProperty ( "color" ) ]
22
22
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
23
- public Color Color { get ; set ; }
23
+ public Color ? Color { get ; set ; }
24
24
}
25
25
}
26
26
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class Info
18
18
19
19
[ JsonProperty ( "color" ) ]
20
20
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
21
- public Color Color { get ; set ; }
21
+ public Color ? Color { get ; set ; }
22
22
23
23
[ JsonProperty ( "children" ) ]
24
24
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class Info
18
18
19
19
[ JsonProperty ( "color" ) ]
20
20
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
21
- public Color Color { get ; set ; }
21
+ public Color ? Color { get ; set ; }
22
22
23
23
[ JsonProperty ( "children" ) ]
24
24
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class Info
18
18
19
19
[ JsonProperty ( "color" ) ]
20
20
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
21
- public Color Color { get ; set ; }
21
+ public Color ? Color { get ; set ; }
22
22
23
23
[ JsonProperty ( "children" ) ]
24
24
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public class Data
14
14
{
15
15
[ JsonProperty ( "color" ) ]
16
16
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
17
- public Color Color { get ; set ; }
17
+ public Color ? Color { get ; set ; }
18
18
}
19
19
}
20
20
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class Info
21
21
22
22
[ JsonProperty ( "color" ) ]
23
23
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
24
- public Color Color { get ; set ; }
24
+ public Color ? Color { get ; set ; }
25
25
26
26
[ JsonProperty ( "children" ) ]
27
27
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class Info
18
18
19
19
[ JsonProperty ( "color" ) ]
20
20
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
21
- public Color Color { get ; set ; }
21
+ public Color ? Color { get ; set ; }
22
22
23
23
[ JsonProperty ( "children" ) ]
24
24
public IEnumerable < INonColumnBlock > Children { get ; set ; }
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class SelectOption
35
35
/// </summary>
36
36
[ JsonProperty ( "color" ) ]
37
37
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
38
- public Color Color { get ; set ; }
38
+ public Color ? Color { get ; set ; }
39
39
}
40
40
41
41
public class MultiSelectProperty : Property
Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ public class Annotations
43
43
44
44
[ JsonProperty ( "color" ) ]
45
45
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
46
- public Color Color { get ; set ; }
46
+ public Color ? Color { get ; set ; }
47
47
}
48
48
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public class Data
33
33
/// </summary>
34
34
[ JsonProperty ( "color" ) ]
35
35
[ JsonConverter ( typeof ( StringEnumConverter ) ) ]
36
- public Color Color { get ; set ; }
36
+ public Color ? Color { get ; set ; }
37
37
}
38
38
39
39
public enum Color
You can’t perform that action at this time.
0 commit comments