-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathPostalAddress.cs
41 lines (36 loc) · 1.16 KB
/
PostalAddress.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
namespace Bot.Builder.Community.Dialogs.Location
{
public class PostalAddress
{
/// <summary>
/// Gets or sets the formatted address.
/// </summary>
/// <example>One Microsoft Way, Redmond, WA, United States (98052)</example>
public string FormattedAddress { get; set; }
/// <summary>
/// Gets or sets the country
/// </summary>
/// <example>United States</example>
public string Country { get; set; }
/// <summary>
/// Gets or sets the locality
/// </summary>
/// <example>Redmond</example>
public string Locality { get; set; }
/// <summary>
/// Gets or sets the region
/// </summary>
/// <example>WA</example>
public string Region { get; set; }
/// <summary>
/// Gets or sets the postal code
/// </summary>
/// <example>98052</example>
public string PostalCode { get; set; }
/// <summary>
/// Gets or sets the street address
/// </summary>
/// <example>One Microsoft Way</example>
public string StreetAddress { get; set; }
}
}