using Sony.Filtr.Contracts.SpotifyIntegration; namespace Sony.Filtr.Contracts.Entities { public class ExtendedPlaylistTrackReference { public int PlaylistId { get; set; } public string Name { get; set; } public SpotifyLink SpotifyUri { get; set; } public string SpotifyImageFileName { get; set; } //public int Followers { get; set; } public SpotifyTrack SpotifyTrack { get; set; } } }