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 779B

12345678910111213141516171819202122
  1. namespace UnivateProperties_API.Containers.ProcessFlow
  2. {
  3. public class BidItemDisplay
  4. {
  5. #region Properties
  6. public int Id { get; set; }
  7. public string Type { get; set; }
  8. public string ShortDescription { get; set; }
  9. public string Description { get; set; }
  10. public string Resort { get; set; }
  11. public string Unit { get; set; }
  12. public string Module { get; set; }
  13. public string StatusCode { get; set; }
  14. public string Status { get; set; }
  15. public decimal Price { get; set; }
  16. public decimal Offer { get; set; }
  17. public string MadeBy { get; set; }
  18. public string Comment { get; set; }
  19. public string DeclineReason { get; set; }
  20. #endregion
  21. }
  22. }