using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("tblPlaylistCategory")] [PrimaryKey("id", autoIncrement = true)] public class PlaylistCategory { public const string Version = "6"; public int ID { get; set; } public string Name { get; set; } public string Description { get; set; } public string Icon { get; set; } public int ApplicationId { get; set; } public bool Active { get; set; } public int Order { get; set; } public string PredefinedIconName { get; set; } public int? PlaylistCategoryIconId { get; set; } } }