当前位置: 首页 > 工具软件 > JSONVALUE > 使用案例 >

Enum枚举序列化JSON value to string问题

狄旭
2023-12-01
在MODEL project上引用Json.net DLL

然后加上Attribute [JsonConverter(typeof(StringEnumConverter))]



public class ProcesserCondition
    {
        [JsonConverter(typeof(StringEnumConverter))]
        public DataType DataType { get; set; }


    }

 public enum DataType
    {
        Image,
        Title,
        Ingredients,
        Custom
    }

 类似资料: