using System; using System.Linq; using PetaPoco; using Sony.Filtr.Contracts.Definitions; namespace Sony.Filtr.Contracts.Entities { [Serializable] [TableName("tblCarouselImage")] [PrimaryKey("Id", autoIncrement = true)] public class CarouselImage { public int Id { get; set; } public int ApplicationId { get; set; } public string Title { get; set; } public string Uri { get; set; } public int Order { get; set; } public ServiceType ServiceType { get; set; } public bool Active { get; set; } public string OriginalImageUrl { get; set; } public string MediumImageUrl { get; set; } public string SmallImageUrl { get; set; } public dynamic DynamicLink { get; set; } public static string Version = "2.0"; } }