using System; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [TableName("tblSpotifyPlaylist")] [PrimaryKey("PlaylistId", autoIncrement = false)] [Serializable] public class SpotifyPlaylist { public string PlaylistId { get; set; } public string PlaylistUri { get; set; } public string Name { get; set; } public string Description { get; set; } public string Image { get; set; } public string User { get; set; } public string CountryCode { get; set; } public long Duration { get; set; } public int TrackCount { get; set; } public int Followers { get; set; } public int? BuzzCategoryId { get; set; } public bool Public { get; set; } public bool Removed { get; set; } public DateTime? UpdateDate { get; set; } public DateTime? TrackLatestAdded { get; set; } public string SnapshotId { get; set; } } }