using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.SpotifyAnalytics.Data { [TableName("tblSpotifyAnalyticsAccountDate")] [Serializable] public class SpotifyAnalyticsAccountDateLogEntry { public int AccountId { get; set; } public string Market { get; set; } public DateTime Date { get; set; } public int LogType { get; set; } public int Version { get; set; } public DateTime Timestamp { get; set; } } }