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

handlebars.csharp.model.mustache Maven / Gradle / Ivy

There is a newer version: 1.0.48
Show newest version
{{>partial_header}}
{{^x-is-composed-model}}
using System;
using System.Linq;
using System.IO;
using System.Text;
{{^netStandard}}
using System.Text.RegularExpressions;
{{/netStandard}}
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
{{#models}}
{{#model}}
{{#discriminator}}
using JsonSubTypes;
{{/discriminator}}
{{/model}}
{{/models}}
{{^netStandard}}
{{#generatePropertyChanged}}
using PropertyChanged;
using System.ComponentModel;
{{/generatePropertyChanged}}
using System.ComponentModel.DataAnnotations;
{{/netStandard}}
using SwaggerDateConverter = {{packageName}}.Client.SwaggerDateConverter;
{{/x-is-composed-model}}
{{#models}}
{{#model}}
namespace {{packageName}}.{{modelPackage}}
{
{{#isComposedModel}}
    {{>interface}}
{{/isComposedModel}}
{{^isComposedModel}}
{{#isEnum}}{{>modelEnum}}{{/isEnum}}{{^isEnum}}{{>modelGeneric}}{{/isEnum}}
{{/isComposedModel}}
{{/model}}
{{/models}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy