using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entity.ShowEasyDtos { public class BookingDTO { public string BookingID { get; set; } public string BookingNo { get; set; } public DateTime? BookingDate { get; set; } public string LanguageID { get; set; } public List BookingDetail = new List(); public OnSiteServiceDTO OnSiteService = new OnSiteServiceDTO(); public string NoticeDetail { get; set; } public List OtherDetail = new List(); public string InvoiceID { get; set; } public string MemberID { get; set; } public string Account { get; set; } public MemberDTO Member = new MemberDTO(); public string PurchaserType { get; set; } public ContactDTO PurchaserContact = new ContactDTO(); public CompanyDTO PurchaserCompany = new CompanyDTO(); public ContactDTO Contact = new ContactDTO(); public PaymentDTO Payment = new PaymentDTO(); public string PaymentType { get; set; } public string PaymentStatus { get; set; } public string ShippingID { get; set; } public string BookingStatus { get; set; } public int Quantity { get; set; } //public string Currency { get; set; } public CurrencyDTO Currency = new CurrencyDTO(); public string TaxRateID { get; set; } public string TotalPrice { get; set; } public string CancellationPolicy { get; set; } public string Memo { get; set; } } }