using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data.Internal { [TableName("tblAppleMusicStreamSummary")] public class AppleMusicStreamSummary { public DateTime Date { get; set; } public string Storefront { get; set; } public long TotalStreams { get; set; } public long TotalListeners { get; set; } public long SourceSearchStreams { get; set; } public long SourceOtherStreams { get; set; } public long SourceDiscoveryStreams { get; set; } public long SourceLibraryStreams { get; set; } public long SourceMusicKitStreams { get; set; } public long ContainerPlaylistStreams { get; set; } public long ContainerRadioStreams { get; set; } public long ContainerAlbumStreams { get; set; } public long ContainerNoneStreams { get; set; } public long SourceSearchUsers { get; set; } public long SourceOtherUsers { get; set; } public long SourceDiscoveryUsers { get; set; } public long SourceLibraryUsers { get; set; } public int SourceMusicKitUsers { get; set; } public long ContainerPlaylistUsers { get; set; } public long ContainerRadioUsers { get; set; } public long ContainerAlbumUsers { get; set; } public long ContainerNoneUsers { get; set; } public long ContainerSubTypeArtistPlaylist { get; set; } public long ContainerSubTypeCuratorPlaylist { get; set; } public long ContainerSubTypeEditorialPlaylist { get; set; } public long ContainerSubTypeEditorialStation { get; set; } public long ContainerSubTypeFormatStation { get; set; } public long ContainerSubTypeNonApplicable { get; set; } public long ContainerSubTypePersonalMixPlaylist { get; set; } public long ContainerSubTypePrivateUserPlaylist { get; set; } public long ContainerSubTypeSeeded { get; set; } public int ContainerOtherPlaylistsUsers { get; set; } } }