using System.Collections.Generic; using Newtonsoft.Json; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.Search { public class PlaylistSearchRequest { public List ServiceType { get; set; } //public bool IsEditorialPlaylist { get; set; } public string SearchQuery { get; set; } public string Owner { get; set; } public string CountryCode { get; set; } public List BuzzCategoryIds { get; set; } public List MarketIds { get; set; } public string TagQuery { get; set; } public string ArtistQuery { get; set; } //[JsonProperty(Required = Required.AllowNull)] //public string ISRC { get; set; } } }