using System.Linq; using Newtonsoft.Json; namespace Sony.Filtr.AdminAPI.Modules.AnalyzePlaylist.ViewModels { public class IsSonyViewModel { [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string Isrc { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string TrackId { get; set; } public bool IsSony { get; set; } public string Market { get; set; } } }