using System; using System.Linq; using Newtonsoft.Json; namespace Sony.Filtr.AdminAPI.Modules.TrackPlaylistAdds.ViewModels { [Serializable] public class TrackPlaylistAddViewModel { public LocalSpotifyTrackViewModel SpotifyTrack { get; set; } public int Playlists { get; set; } public long? TotalPlaylistSubscribers { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public bool? IsSony { get; set; } } }