using System; using System.Linq; using PetaPoco; namespace Sony.Filtr.Contracts.Entities.Genre { [Serializable] [TableName("tblGenreGlobalization")] [PrimaryKey("intID")] [ExplicitColumns] public class GlobalizedGenre { [Column("intID")] public int ID { get; set; } public Genre Genre { get; set; } [Column("intGenreID")] public int GenreID { get; set; } [Column("strLanguageCode")] public string LanguageCode { get; set; } [Column("strName")] public string GlobalizedName { get; set; } } }