API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BidItemDisplay.cs 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using UnivateProperties_API.Model.ProcessFlow;
  3. namespace UnivateProperties_API.Containers.ProcessFlow
  4. {
  5. public class BidItemDisplay
  6. {
  7. #region Properties
  8. public int Id { get; set; }
  9. public string Type { get; set; }
  10. public string ShortDescription { get; set; }
  11. public string Description { get; set; }
  12. public string Resort { get; set; }
  13. public string UnitNumber { get; set; }
  14. public string WeekNumber { get; set; }
  15. public string StatusCode { get; set; }
  16. public string Status { get; set; }
  17. public decimal Price { get; set; }
  18. public decimal Offer { get; set; }
  19. public string MadeBy { get; set; }
  20. public DateTime Date { get; set; }
  21. public string Comment { get; set; }
  22. public string DeclineReason { get; set; }
  23. public decimal SellPrice { get; set; }
  24. #endregion
  25. }
  26. public class BidItemNew : BidItem
  27. {
  28. public int UserId { get; set; }
  29. }
  30. }