-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViewNames.cs
44 lines (38 loc) · 1004 Bytes
/
ViewNames.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
44
namespace DonPavlik.Desktop.Contacts
{
/// <summary>
/// View Names class deinfition of view/state names
/// </summary>
public static class ViewNames
{
/// <summary>
/// Add person view name
/// </summary>
public const string ADD_PERSON = "Add Person";
/// <summary>
/// Edit person view name
/// </summary>
public const string EDIT_PERSON = "Edit Person";
/// <summary>
/// Add organization view name
/// </summary>
public const string ADD_ORGANIZATION = "Add Organization";
/// <summary>
/// Edit Organization view name
/// </summary>
public const string EDIT_ORGANIZATION = "Edit Organization";
/// <summary>
/// Groups view name
/// </summary>
public const string GROUPS = "Groups";
/// <summary>
/// People view name
/// </summary>
public const string PEOPLE = "People";
/// <summary>
/// Organization view name
/// </summary>
public const string ORGANIZATION = "Organizations";
}
}