using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PetaPoco; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("tblStarredContent")] [PrimaryKey("Id", autoIncrement = true)] public class StarredContent { public int Id { get; set; } public string UserId { get; set; } public string Uri { get; set; } public string ISRC { get; set; } } }