12345678910111213141516171819202122232425262728 |
- namespace UnivateProperties_API
- {
- public enum PropertyUsageType
- {
- Residential,
- Commercial,
- Both
- }
-
- public enum ValidationResult
- {
- Success,
- Failed
- }
-
- public enum PersonType
- {
- Individual,
- Agent
- }
-
- public enum StatusType
- {
- Timeshare,
- Property,
- Bid
- }
- }
|