|
@@ -1,4 +1,6 @@
|
1
|
|
-namespace UnivateProperties_API.Containers.Timeshare
|
|
1
|
+using System.Collections.Generic;
|
|
2
|
+
|
|
3
|
+namespace UnivateProperties_API.Containers.Timeshare
|
2
|
4
|
{
|
3
|
5
|
public class ResortDisplay
|
4
|
6
|
{
|
|
@@ -7,4 +9,71 @@
|
7
|
9
|
public string ResortImage { get; set; }
|
8
|
10
|
public int WeeksAvailable { get; set; }
|
9
|
11
|
}
|
|
12
|
+
|
|
13
|
+ public class ResortData : GoMeloResort
|
|
14
|
+ {
|
|
15
|
+ public string Layout { get; set; }
|
|
16
|
+ public string Description { get; set; }
|
|
17
|
+ public List<string> Images { get; set; }
|
|
18
|
+ }
|
|
19
|
+
|
|
20
|
+ public class GoMeloResort
|
|
21
|
+ {
|
|
22
|
+ public int PrIdx { get; set; }
|
|
23
|
+ public string PrProductIndex { get; set; }
|
|
24
|
+ public string PrProdType { get; set; }
|
|
25
|
+ public string PrName { get; set; }
|
|
26
|
+ public string PrPostAdd1 { get; set; }
|
|
27
|
+ public Coords PrPostAdd2 { get; set; }
|
|
28
|
+ public string PrPostTown { get; set; }
|
|
29
|
+ public string PrPostCountry { get; set; }
|
|
30
|
+ public string PrPostCode { get; set; }
|
|
31
|
+ public string PrStreetAdd1 { get; set; }
|
|
32
|
+ public string PrStreetAdd2 { get; set; }
|
|
33
|
+ public string PrStreetTown { get; set; }
|
|
34
|
+ public string PrStreetCountry { get; set; }
|
|
35
|
+ public string PrStreetCode { get; set; }
|
|
36
|
+ public string PrLastDate { get; set; }
|
|
37
|
+ public string PrManager { get; set; }
|
|
38
|
+ public string PrReservations { get; set; }
|
|
39
|
+ public string PrStartDate { get; set; }
|
|
40
|
+ public string PrStartYear { get; set; }
|
|
41
|
+ public string PrEndDate { get; set; }
|
|
42
|
+ public string PrNoYears { get; set; }
|
|
43
|
+ public string PrIntervals { get; set; }
|
|
44
|
+ public int PrIntervalWe { get; set; }
|
|
45
|
+ public int PrIntervalMw { get; set; }
|
|
46
|
+ public string PrRegion { get; set; }
|
|
47
|
+ public string PrCity { get; set; }
|
|
48
|
+ public string PrProvince { get; set; }
|
|
49
|
+ public string PrCheckin { get; set; }
|
|
50
|
+ public string PrCheckout { get; set; }
|
|
51
|
+ public string PrCheckInDay { get; set; }
|
|
52
|
+ public string PrNotes { get; set; }
|
|
53
|
+ public string PrDirections { get; set; }
|
|
54
|
+ public string PrUnitFacilities { get; set; }
|
|
55
|
+ public string PrAttractions { get; set; }
|
|
56
|
+ public string PrAlerts { get; set; }
|
|
57
|
+ public string PrManaged { get; set; }
|
|
58
|
+ public string PrCountry { get; set; }
|
|
59
|
+ public string PrWww { get; set; }
|
|
60
|
+ public string PrManAgent { get; set; }
|
|
61
|
+ public string PrImagePath { get; set; }
|
|
62
|
+ public string PrRciaffiliated { get; set; }
|
|
63
|
+ public string PrSelfCatering { get; set; }
|
|
64
|
+ public string PrLatitude { get; set; }
|
|
65
|
+ public string PrLongitude { get; set; }
|
|
66
|
+ public string PrAirport { get; set; }
|
|
67
|
+ public int PrAirportDistance { get; set; }
|
|
68
|
+ public string PrStadium { get; set; }
|
|
69
|
+ public int PrStadiumDistance { get; set; }
|
|
70
|
+ public string PrWcCity { get; set; }
|
|
71
|
+ public int PrWcCityDistance { get; set; }
|
|
72
|
+ }
|
|
73
|
+
|
|
74
|
+ public class Coords
|
|
75
|
+ {
|
|
76
|
+ public string Lat { get; set; }
|
|
77
|
+ public string Long { get; set; }
|
|
78
|
+ }
|
10
|
79
|
}
|