using System; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("EditorialPlaylistNew")] [PrimaryKey("ID", autoIncrement = true)] public class EditorialPlaylistNew { public int ID { get; set; } public int ApplicationID { get; set; } public string DisplayName { get; set; } public DeezerPlaylist DeezerPlaylist { get; set; } public SpotifyPlaylist SpotifyPlaylist { get; set; } public int SpotifyPriorityLevel { get; set; } public EditorialPlaylistTheme Theme { get; set; } } }