using System; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("DeezerPlaylist")] [PrimaryKey("DeezerId", autoIncrement = false)] public class DeezerPlaylist { public long DeezerId { get; set; } public string Title { get; set; } public string Description { get; set; } public int Rating { get; set; } public string Link { get; set; } public string Picture { get; set; } public long CreatorId { get; set; } public string CreatorName { get; set; } public int Duration { get; set; } public int TrackCount { get; set; } } }