//------------------------------------------------------------------------------ // // 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 TblEVoucherCategory { public TblEVoucherCategory() { this.TblEVouchers = new HashSet(); } public int OID { get; set; } public Nullable DateCreated { get; set; } public string CreatedBy { get; set; } public string Prefix { get; set; } public string CategoryName { get; set; } public Nullable Decommissioned { get; set; } public Nullable SalesVenue { get; set; } public Nullable VoucherValue { get; set; } public string SMSTemplate { get; set; } public string FullName { get; set; } public Nullable OptimisticLockField { get; set; } public Nullable GCRecord { get; set; } public Nullable IsCBC { get; set; } public string HTMLTemplate { get; set; } public string LogoURL { get; set; } public string MainURL { get; set; } public string BannerURL { get; set; } public string Subject { get; set; } public virtual ICollection TblEVouchers { get; set; } public virtual TblSalesVenue TblSalesVenue { get; set; } } }