try string in input type

This commit is contained in:
2021-11-25 15:44:16 +01:00
parent 39528bc248
commit 7cf092cc9f
3 changed files with 10 additions and 10 deletions

View File

@ -21,7 +21,6 @@ namespace ${env['packagename']}.Implementations
#for $operation in $operations
#if $operation['paramInputTypes']
// $operation['func']
[DataContract]
public class ${operation['func']}InputType
{
@ -30,7 +29,7 @@ namespace ${env['packagename']}.Implementations
[Required]
#end if
[DataMember(Name="$inputType['name']")]
public int $inputType['csName'] { get; set; }
public $inputType['type'] $inputType['csName'] { get; set; }
#end for
}