using System; using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.ViewModels.PlaylistCuration { public class PlaylistCurationPlaylistItemViewModel : IStreamSummaryViewModel { public int Id { get; set; } public string Name { get; set; } public int? BuzzCategoryId { get; set; } public string BuzzCategoryName { get; set; } public string CountryCode { get; set; } public long? Followers { get; set; } public string SpotifyImageFileName { get; set; } public string SpotifyLink { get; set; } public IEnumerable Markets { get; set; } public DateTime? TrackLatestAdded { get; set; } public int? GlobalStreams28days { get; set; } public int? GlobalStreams7days { get; set; } public int? GlobalStreamsLatest { get; set; } public int? GlobalUsers28days { get; set; } public int? GlobalUsers7days { get; set; } public int? GlobalUsersLatest { get; set; } public int? LocalStreams28days { get; set; } public int? LocalStreams7days { get; set; } public int? LocalStreamsLatest { get; set; } public int? LocalUsers28days { get; set; } public int? LocalUsers7days { get; set; } public int? LocalUsersLatest { get; set; } public DateTime? LatestStreamsDate { get; set; } public bool? TrackPreviouslyAdded { get; set; } } }