using System; using System.Linq; namespace Sony.Filtr.AppleMusic.Data { [Serializable] public class AppleMusicArtistReference { public long ArtistId { get; set; } public string Name { get; set; } } }