-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathListing.cs
43 lines (40 loc) · 1.44 KB
/
Listing.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace REBGV.CosmosDB
{
public class Listing
{
[JsonProperty(PropertyName = "id")]
public string id { get; set; }
public string contractDate { get; set; }
public string addressUnitNumber { get; set; }
public string addressHouseNumber { get; set; }
public string addressStreetName { get; set; }
public string addressStreetType { get; set; }
public string addressCityOrTown { get; set; }
public string area { get; set; }
public string designatedAgent1 { get; set; }
public string userId1 { get; set; }
public string designatedAgent2 { get; set; }
public string userId2 { get; set; }
public string[] showingInformation { get; set; }
public string appointmentPhoneNumber { get; set; }
public string forAppointmentCall { get; set; }
public string dwellingClassification { get; set; }
public string typeOfDwelling { get; set; }
public string[] styleOfHome { get; set; }
public string titleToLand { get; set; }
public string landLeaseExpiryYear { get; set; }
public string[] sellersInterest { get; set; }
public string[] occupancy { get; set; }
public bool propertyDisclosureStatement { get; set; }
public string propertyDisclosureStatementNotCompletedExplanation { get; set; }
[JsonExtensionData]
public Dictionary<string, object> extraFields { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this);
}
}
}