File tree Expand file tree Collapse file tree 2 files changed +166
-0
lines changed Expand file tree Collapse file tree 2 files changed +166
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "modelStart" : " {\n " ,
3
+ "reservedKeywords" : [
4
+ " abstract" ,
5
+ " assert" ,
6
+ " boolean" ,
7
+ " break" ,
8
+ " byte" ,
9
+ " case" ,
10
+ " catch" ,
11
+ " char" ,
12
+ " class" ,
13
+ " const" ,
14
+ " continue" ,
15
+ " default" ,
16
+ " do" ,
17
+ " double" ,
18
+ " else" ,
19
+ " enum" ,
20
+ " extends" ,
21
+ " false" ,
22
+ " final" ,
23
+ " finally" ,
24
+ " float" ,
25
+ " for" ,
26
+ " goto" ,
27
+ " if" ,
28
+ " implements" ,
29
+ " import" ,
30
+ " instanceof" ,
31
+ " int" ,
32
+ " interface" ,
33
+ " long" ,
34
+ " native" ,
35
+ " new" ,
36
+ " null" ,
37
+ " package" ,
38
+ " private" ,
39
+ " protected" ,
40
+ " public" ,
41
+ " return" ,
42
+ " short" ,
43
+ " static" ,
44
+ " strictfp" ,
45
+ " super" ,
46
+ " switch" ,
47
+ " synchronized" ,
48
+ " this" ,
49
+ " throw" ,
50
+ " throws" ,
51
+ " transient" ,
52
+ " true" ,
53
+ " try" ,
54
+ " void" ,
55
+ " volatile" ,
56
+ " while" ,
57
+ " class" ,
58
+ " description" ,
59
+ " string" ,
60
+ " object"
61
+ ],
62
+
63
+ "dataTypes" : {
64
+ "arrayType" : " IList<<!ElementType!>>" ,
65
+ "generic" : " object" ,
66
+ "string" : " string" ,
67
+ "boolean" : " bool" ,
68
+ "float" : " double" ,
69
+ "doubleType" : " double" ,
70
+ "characterType" : " char" ,
71
+ "longType" : " long" ,
72
+ "int" : " int"
73
+ },
74
+
75
+ "modelDefinition" : " \n public class <!ModelName!> " ,
76
+ "fileExtension" : " cs" ,
77
+ "instanceVarDefinition" : " \t public <!VarType!> <!VarName!> { get; set; }\n " ,
78
+ "modelEnd" : " \n }" ,
79
+ "staticImports" : " using System;\n using System.Collections.Generic;" ,
80
+ "supportsCamelcasing" : false ,
81
+ "methods" : {
82
+ }
83
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "modelStart" : " {\n " ,
3
+ "reservedKeywords" : [
4
+ " abstract" ,
5
+ " assert" ,
6
+ " boolean" ,
7
+ " break" ,
8
+ " byte" ,
9
+ " case" ,
10
+ " catch" ,
11
+ " char" ,
12
+ " class" ,
13
+ " const" ,
14
+ " continue" ,
15
+ " default" ,
16
+ " do" ,
17
+ " double" ,
18
+ " else" ,
19
+ " enum" ,
20
+ " extends" ,
21
+ " false" ,
22
+ " final" ,
23
+ " finally" ,
24
+ " float" ,
25
+ " for" ,
26
+ " goto" ,
27
+ " if" ,
28
+ " implements" ,
29
+ " import" ,
30
+ " instanceof" ,
31
+ " int" ,
32
+ " interface" ,
33
+ " long" ,
34
+ " native" ,
35
+ " new" ,
36
+ " null" ,
37
+ " package" ,
38
+ " private" ,
39
+ " protected" ,
40
+ " public" ,
41
+ " return" ,
42
+ " short" ,
43
+ " static" ,
44
+ " strictfp" ,
45
+ " super" ,
46
+ " switch" ,
47
+ " synchronized" ,
48
+ " this" ,
49
+ " throw" ,
50
+ " throws" ,
51
+ " transient" ,
52
+ " true" ,
53
+ " try" ,
54
+ " void" ,
55
+ " volatile" ,
56
+ " while" ,
57
+ " class" ,
58
+ " description" ,
59
+ " string" ,
60
+ " object"
61
+ ],
62
+
63
+ "dataTypes" : {
64
+ "arrayType" : " IList<<!ElementType!>>" ,
65
+ "generic" : " object" ,
66
+ "string" : " string" ,
67
+ "boolean" : " bool" ,
68
+ "float" : " double" ,
69
+ "doubleType" : " double" ,
70
+ "characterType" : " char" ,
71
+ "longType" : " long" ,
72
+ "int" : " int"
73
+ },
74
+
75
+ "modelDefinition" : " \n public class <!ModelName!> " ,
76
+ "fileExtension" : " cs" ,
77
+ "instanceVarDefinition" : " \n\t [JsonProperty(\" <!JsonKeyName!>\" )]\n\t public <!VarType!> <!VarName!> { get; set; }\n " ,
78
+ "modelEnd" : " \n }" ,
79
+ "staticImports" : " using System;\n using System.Collections.Generic;\n\n using Newtonsoft.Json;\n using Newtonsoft.Json.Converters;" ,
80
+ "supportsCamelcasing" : true ,
81
+ "methods" : {
82
+ }
83
+ }
You can’t perform that action at this time.
0 commit comments