forked from BotBuilderCommunity/botbuilder-community-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LocationRequiredFields.cs
43 lines (37 loc) · 908 Bytes
/
LocationRequiredFields.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;
namespace Bot.Builder.Community.Dialogs.Location
{
[Flags]
public enum LocationRequiredFields
{
/// <summary>
/// No required fields.
/// </summary>
None = 0,
/// <summary>
/// The street address
/// </summary>
/// <example>One Microsoft Way</example>
StreetAddress = 1,
/// <summary>
/// The locality
/// </summary>
/// <example>Redmond</example>
Locality = 2,
/// <summary>
/// The region
/// </summary>
/// <example>WA</example>
Region = 4,
/// <summary>
/// The country
/// </summary>
/// <example>United States</example>
Country = 8,
/// <summary>
/// The postal code
/// </summary>
/// <example>98052</example>
PostalCode = 16
}
}