All Downloads are FREE. Search and download functionalities are using the official Maven repository.

csharp-dotnet2.model.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
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}}}{{/parent}} {
    {{#vars}}
    /// 
    /// {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{{description}}}{{/description}}
    /// {{#description}}
    /// {{{description}}}{{/description}}
    [DataMember(Name="{{baseName}}", EmitDefaultValue=false)]
    [JsonProperty(PropertyName = "{{baseName}}")]
    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 JsonConvert.SerializeObject(this, Formatting.Indented);
    }

}
{{/model}}
{{/models}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy