using System; namespace Sony.Filtr.Contracts.Entities { public class EditorialPlaylistAttributes { public EditorialPlaylistAttributes(string spotifyUri) { SpotifyUri = spotifyUri; } public string SpotifyUri { get; } public long? Followers { get; set; } public long? LastFollowers { get; set; } public long? FollowerChange7 { get; set; } public long? FollowerChange15 { get; set; } public long? FollowerChange30 { get; set; } public long? TracksAddedThisWeek { get; set; } public long? TrackCount { get; set; } public long? TrackDuration { get; set; } public long? TracksAddedToday { get; set; } public DateTime? Changed { get; set; } public double? Hotness { get; set; } public double? Tempo { get; set; } public double? Energy { get; set; } public double? Popularity { get; set; } public string CountryCode { get; set; } public double? SonyPercentage { get; set; } } }