using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Sony.Filtr.AdminAPI.ViewModels.Spotify.Analytics { public class SpotifyAnalyticsTrackStreamViewModel { public List Items { get; set; } } public class SpotifyAnalyticsTrackStreamItemViewModel { public string CountryCode { get; set; } public string Isrc { get; set; } public int DeviceTypePersonalComputer { get; set; } public int DeviceTypeCellPhone { get; set; } public int DeviceTypeTablet { get; set; } public int DeviceTypeGamingConsole { get; set; } public int DeviceTypeSmartTvDevice { get; set; } public int DeviceTypeConnectedAudioDevice { get; set; } public int DeviceTypeBuiltinCarApplication { get; set; } public int DeviceTypeOther { get; set; } public int DeviceOsAndroid { get; set; } public int DeviceOsBlackberry { get; set; } public int DeviceOsBrowser { get; set; } public int DeviceOsIos { get; set; } public int DeviceOsLinux { get; set; } public int DeviceOsMac { get; set; } public int DeviceOsOther { get; set; } public int DeviceOsWindows { get; set; } public int RepeatPlay { get; set; } public int ShufflePlay { get; set; } public int SourceAlbum { get; set; } public int SourceArtist { get; set; } public int SourceChart { get; set; } public int SourceCollection { get; set; } public int SourceOther { get; set; } public int SourceOthersPlaylist { get; set; } public int SourceRadio { get; set; } public int SourceSearch { get; set; } public int Streams { get; set; } } }