| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | using System;
using UnivateProperties_API.Model.ProcessFlow;
namespace UnivateProperties_API.Containers.ProcessFlow
{
    public class BidItemDisplay
    {
        #region Properties
        public int Id { get; set; }        
        public string Type { get; set; }
        public string ShortDescription { get; set; }
        public string Description { get; set; }
        public string Resort { get; set; }
        public string UnitNumber { get; set; }
        public string WeekNumber { get; set; }
        public string StatusCode { get; set; }
        public string Status { get; set; }
        public decimal Price { get; set; }
        public decimal Offer { get; set; }
        public string MadeBy { get; set; }
        public DateTime Date { get; set; }
        public string Comment { get; set; }
        public string DeclineReason { get; set; }
        public decimal SellPrice { get; set; }
        #endregion 
    }
    public class BidItemNew : BidItem
    {
        public int UserId { get; set; }
        public TenderWeek TenderWeek { get; set; }
    }
    public class TenderWeek
    {
        public DateTime ArrivalDate { get; set; }
        public int Bedrooms { get; set; }
        public DateTime DepartureDate { get; set; }
        public decimal LevyAmount { get; set; }
        public int MaxSleeps { get; set; }
        public string Season { get; set; }
        public decimal SellingPrice { get; set; }
        public string UnitNumber { get; set; }
        public string WeekNumber { get; set; }
        public TenderResort Resort { get; set; }
        public TenderRegion Region { get; set; }
    }
    public class TenderResort
    {        
        public string ResortCode { get; set; }    
        public string ResortName { get; set; }
    }
    public class TenderRegion 
    { 
        public int Id { get; set; }
        public string RegionCode { get; set; }
        public string RegionName { get; set; }
    }
}
 |