using Newtonsoft.Json; using Newtonsoft.Json.Converters; namespace Sony.Filtr.AdminAPI.ViewModels.PlaylistCuration { public class MatchCriterion { [JsonConverter(typeof(StringEnumConverter))] public MatchType Type { get; set; } public int Score { get; set; } public string Explanation { get; set; } } }