//------------------------------------------------------------------------------
//
// 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 TblMarketingCampaign
{
public TblMarketingCampaign()
{
this.TblMarketingCampaignResorts = new HashSet();
this.TblVouchers = new HashSet();
this.TblVoucherSeries = new HashSet();
}
public int OID { get; set; }
public string CreatedBy { get; set; }
public Nullable CreatedDate { get; set; }
public string Name { get; set; }
public Nullable Brand { get; set; }
public Nullable Partner { get; set; }
public string Description { get; set; }
public string LastVoucherNumberUsed { get; set; }
public string Prefix { get; set; }
public string SmsUser { get; set; }
public string SmsPassword { get; set; }
public Nullable TimeSpesificAvailability { get; set; }
public Nullable AvailabilityStart { get; set; }
public Nullable AvailabilityEnd { get; set; }
public Nullable ResortBookingConfirmationDocumentPath { get; set; }
public virtual ICollection TblMarketingCampaignResorts { get; set; }
public virtual ICollection TblVouchers { get; set; }
public virtual ICollection TblVoucherSeries { get; set; }
}
}