Browse Source

Added status type

master
Kobus 5 years ago
parent
commit
ed67ae07f5

+ 7
- 0
UnivateProperties_API/Enums.cs View File

18
         Individual,
18
         Individual,
19
         Agent
19
         Agent
20
     }
20
     }
21
+
22
+    public enum StatusType
23
+    {
24
+        Timeshare,
25
+        Property,
26
+        Bid
27
+    }
21
 }
28
 }

+ 1
- 0
UnivateProperties_API/Model/Timeshare/Status.cs View File

4
     {
4
     {
5
         public string Code { get; set; }
5
         public string Code { get; set; }
6
         public string Description { get; set; }
6
         public string Description { get; set; }
7
+        public StatusType StatusType { get; set; }
7
     }
8
     }
8
 }
9
 }

Loading…
Cancel
Save