using System.Collections.Generic; using System.Linq; namespace Sony.Filtr.PlaylistSynchronization { public class GenericTrack { public string Name { get; set; } public List Artists { get; set; } public string ISRC { get; set; } public string SpotifyUri { get; set; } public long? DeezerId { get; set; } } }