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

csharp.enumClass.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
        /// 
        /// {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{description}}{{/description}}
        /// 
        {{#description}}
        /// {{description}}
        {{/description}}
        [JsonConverter(typeof(StringEnumConverter))]
        {{>visibility}} enum {{#datatypeWithEnum}}{{.}}{{/datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}
        {
            {{#allowableValues}}{{#enumVars}}
            /// 
            /// Enum {{name}} for {{{value}}}
            /// 
            [EnumMember(Value = {{#isLong}}"{{/isLong}}{{#isInteger}}"{{/isInteger}}{{#isFloat}}"{{/isFloat}}{{#isDouble}}"{{/isDouble}}{{{value}}}{{#isLong}}"{{/isLong}}{{#isInteger}}"{{/isInteger}}{{#isDouble}}"{{/isDouble}}{{#isFloat}}"{{/isFloat}})]
            {{name}}{{#isLong}} = {{{value}}}{{/isLong}}{{#isInteger}} = {{{value}}}{{/isInteger}}{{^isInteger}} = {{-index}}{{/isInteger}}{{^-last}},
            {{/-last}}{{/enumVars}}{{/allowableValues}}
        }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy