File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,7 @@ export interface <#= entityType.Name.UpperCaseFirstChar() #><# if (entityType.Ba
3333 <# if (prop.LongDescription != null) { #>
3434 /** <#=prop.LongDescription#> */
3535 <# } #>
36- <# if (prop.IsNullable == false) { #>
37- <#= prop.Name #>: <#= prop.GetTypeString() #>
38- <# } else { #>
39- <#= prop.Name #>?: <#= prop.GetTypeString() #>
40- <# } #>
36+ <#= prop.Name #>?: <#= prop.GetTypeString() #>
4137
4238<# } #>
4339}
@@ -54,11 +50,7 @@ export interface <#= complexType.Name.UpperCaseFirstChar()#><# if (complexType.B
5450 <# if (prop.LongDescription != null) { #>
5551 /** <#=prop.LongDescription#> */
5652 <# } #>
57- <# if (prop.IsNullable == false) { #>
58- <#= prop.Name #>: <#= prop.GetTypeString() #>
59- <# } else { #>
60- <#= prop.Name #>?: <#= prop.GetTypeString() #>
61- <# } #>
53+ <#= prop.Name #>?: <#= prop.GetTypeString() #>
6254
6355<# } #>
6456}
You can’t perform that action at this time.
0 commit comments