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

aspnetcore.2.0.enumClass.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version

        /// 
        /// {{^description}}Gets or Sets {{{name}}}{{/description}}{{{description}}}
        /// 
        {{#description}}
        /// {{{.}}}
        {{/description}}
        {{#allowableValues}}{{#enumVars}}{{#-first}}{{#isString}}[JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]{{/isString}}{{/-first}}{{/enumVars}}{{/allowableValues}}
        public enum {{datatypeWithEnum}}{{^datatypeWithEnum}}{{classname}}{{/datatypeWithEnum}}
        {
            {{#allowableValues}}{{#enumVars}}
            /// 
            /// Enum {{name}} for {{{value}}}
            /// 
            {{#isString}}[EnumMember(Value = "{{{value}}}")]{{/isString}}
            {{name}}{{^isString}} = {{{value}}}{{/isString}}{{#isString}} = {{-index}}{{/isString}}{{^-last}},
            {{/-last}}{{/enumVars}}{{/allowableValues}}
        }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy