csharp-dotnet2.model.mustache Maven / Gradle / Ivy
using System;
using System.Text;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using Newtonsoft.Json;
{{#models}}
{{#model}}
namespace {{modelPackage}} {
///
/// {{description}}
///
[DataContract]
public class {{classname}}{{#parent}} : {{{.}}}{{/parent}} {
{{#vars}}
///
/// {{^description}}Gets or Sets {{{name}}}{{/description}}{{{description}}}
/// {{#description}}
/// {{{.}}} {{/description}}
[DataMember(Name="{{baseName}}", EmitDefaultValue=false)]
[JsonProperty(PropertyName = "{{baseName}}")]
{{#deprecated}}
[Obsolete]
{{/deprecated}}
public {{{dataType}}} {{name}} { get; set; }
{{/vars}}
///
/// Get the string presentation of the object
///
/// String presentation of the object
public override string ToString() {
var sb = new StringBuilder();
sb.Append("class {{classname}} {\n");
{{#vars}}
sb.Append(" {{name}}: ").Append({{name}}).Append("\n");
{{/vars}}
sb.Append("}\n");
return sb.ToString();
}
///
/// Get the JSON string presentation of the object
///
/// JSON string presentation of the object
public {{#parent}} new {{/parent}}string ToJson() {
return Newtonsoft.Json.JsonConvert.SerializeObject(this, Newtonsoft.Json.Formatting.Indented);
}
}
{{/model}}
{{/models}}
}