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.

12345678910111213141516171819202122232425262728
  1. namespace UnivateProperties_API
  2. {
  3. public enum PropertyUsageType
  4. {
  5. Residential,
  6. Commercial,
  7. Both
  8. }
  9. public enum ValidationResult
  10. {
  11. Success,
  12. Failed
  13. }
  14. public enum PersonType
  15. {
  16. Individual,
  17. Agent
  18. }
  19. public enum StatusType
  20. {
  21. Timeshare,
  22. Property,
  23. Bid
  24. }
  25. }