using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.AppleMusic.Data.Internal { [TableName("tblAppleMusicPlaylistStream")] public class AppleMusicPlaylistStreams { public DateTime Date { get; set; } public string Storefront { get; set; } public string PlaylistId { get; set; } public long TotalStreams { get; set; } public long UniqueUsers { get; set; } } }