using System; using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.Contracts.Entities { [Serializable] public class Track { public const string Version = "1"; public Track() { } public Track(string artistName, string name) { ArtistName = artistName; Name = name; } public long ID { get; set; } public string Name { get; set; } public string ArtistName { get; set; } public bool IsSonyTrack { get; set; } public int Duration { get; set; } public IEnumerable Territories { get; set; } public SpotifyLink SpotifyLink { get; set; } public string ISRC { get; set; } public string MBID { get; set; } } }