-
Notifications
You must be signed in to change notification settings - Fork 12
/
Constants.cs
31 lines (29 loc) · 1.13 KB
/
Constants.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
namespace SampleApplication
{
public class Constants
{
public class Navigation
{
public const string AuthPage = "AuthPage";
public const string ContactPage = "ContactPage";
public const string FirstContactPromptPage = "FirstContactPromptPage";
public const string GreenLanternPage = "GreenLanternPage";
public const string MainPage = "MainPage";
public const string RegisterPage = "RegisterPage";
public const string SignOut = "SignOut";
public const string TheFlashPage = "TheFlashPage";
public const string WelcomePage = "WelcomePage";
}
public class Parameters
{
public const string Id = "Id";
}
public class ShareLinks
{
public const string Highrise = "https://highrisehq.com/";
public const string HighriseHelp = "https://help.highrisehq.com/";
public const string PrivacyPolicy = "https://highrisehq.com/privacy/";
public const string TermsOfService = "https://highrisehq.com/terms/";
}
}
}