File tree 1 file changed +0
-8
lines changed
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -6,13 +6,9 @@ namespace TypedocConverter.Test
6
6
/// </summary>
7
7
enum MyEnum
8
8
{
9
- [Newtonsoft.Json.JsonProperty("A", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
10
9
A = 0,
11
- [Newtonsoft.Json.JsonProperty("B", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
12
10
B = 1,
13
- [Newtonsoft.Json.JsonProperty("C", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
14
11
C = 2,
15
- [Newtonsoft.Json.JsonProperty("D", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
16
12
D = 2
17
13
}
18
14
}
@@ -127,22 +123,18 @@ namespace TypedocConverter.Test
127
123
///<summary>
128
124
/// A
129
125
///</summary>
130
- [Newtonsoft.Json.JsonProperty("A", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
131
126
A,
132
127
///<summary>
133
128
/// B
134
129
///</summary>
135
- [Newtonsoft.Json.JsonProperty("B", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
136
130
B,
137
131
///<summary>
138
132
/// C
139
133
///</summary>
140
- [Newtonsoft.Json.JsonProperty("C", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
141
134
C,
142
135
///<summary>
143
136
/// other
144
137
///</summary>
145
- [Newtonsoft.Json.JsonProperty("Other", NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
146
138
Other
147
139
}
148
140
class UnionStrConverter : Newtonsoft.Json.JsonConverter
You can’t perform that action at this time.
0 commit comments