not yet working support for list input parameters
This commit is contained in:
@ -29,8 +29,15 @@ namespace ${env['packagename']}.Implementations
|
||||
[Required]
|
||||
#end if
|
||||
[DataMember(Name="$inputType['name']")]
|
||||
public $inputType['type'] $inputType['csName'] { get; set; }
|
||||
|
||||
public #slurp
|
||||
#if $inputType['isList']
|
||||
List<#slurp
|
||||
#end if
|
||||
$inputType['type']#slurp
|
||||
#if $inputType['isList']
|
||||
>#slurp
|
||||
#end if
|
||||
$inputType['csName'] { get; set; }
|
||||
#end for
|
||||
}
|
||||
#end if
|
||||
@ -65,7 +72,14 @@ $sep#slurp
|
||||
#if $inputType['required']
|
||||
[Required()]#slurp
|
||||
#end if
|
||||
$inputType['type'] $inputType['name']#slurp
|
||||
#if $inputType['isList']
|
||||
List<#slurp
|
||||
#end if
|
||||
$inputType['type']#slurp
|
||||
#if $inputType['isList']
|
||||
>#slurp
|
||||
#end if
|
||||
$inputType['name']#slurp
|
||||
#set sep = ', '
|
||||
#end for
|
||||
#end if
|
||||
|
Reference in New Issue
Block a user