//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace ERD { using System; using System.Collections.Generic; public partial class TblPromoConfig { public TblPromoConfig() { this.TblPromoDocuments = new HashSet(); this.TblPromoMembers = new HashSet(); } public int OID { get; set; } public Nullable DateCreated { get; set; } public string CreatedBy { get; set; } public string CampaignName { get; set; } public Nullable StartDate { get; set; } public Nullable EndDate { get; set; } public Nullable ArrivalDate { get; set; } public Nullable DepartureDate { get; set; } public Nullable PromoArrivalDate { get; set; } public Nullable PromoDepartureDate { get; set; } public Nullable Category { get; set; } public Nullable Resort { get; set; } public Nullable PromoResort { get; set; } public Nullable Value { get; set; } public Nullable ValueType { get; set; } public string PromoCode { get; set; } public string HTMLTemplate { get; set; } public Nullable ImportTemplate { get; set; } public Nullable OptimisticLockField { get; set; } public Nullable GCRecord { get; set; } public virtual TblPromoCategory TblPromoCategory { get; set; } public virtual TblResort TblResort { get; set; } public virtual TblResort TblResort1 { get; set; } public virtual ICollection TblPromoDocuments { get; set; } public virtual ICollection TblPromoMembers { get; set; } } }