using System; using System.Collections.Generic; using System.Linq; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.Contracts.Entities { [Serializable] public class PromotedTrack { public const string Version = "2"; public int Id { get; set; } public int ApplicationId { get; set; } public ServiceType ServiceType { get; set; } public ExtendedTrack ExtendedTrack { get; set; } public List Tags { get; set; } } }