Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [Serializable]
- public class Reservation
- {
- public DateInformation Date { get; set; }
- public ContactInformation ContactInfo { get; set; }
- public BillingInformation BillingInfo { get; set; }
- public PaymentInformation Payment { get; set; }
- public ExpenseInformation Expense { get; set; }
- public Reservation()
- {
- Date = new DateInformation();
- ContactInfo = new ContactInformation();
- BillingInfo = new BillingInformation();
- Payment = new PaymentInformation();
- Expense = new ExpenseInformation();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement