using System; using System.Collections.Generic; 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; } public DateTime? TrackAddedDate { get; set; } public string TrackId { get; set; } } }