-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathConstants.cs
24 lines (23 loc) · 883 Bytes
/
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
namespace SampleApplication
{
public class Constants
{
public class Navigation
{
public const string AppointmentPage = "AppointmentPage";
public const string AppointmentSchedulePage = "AppointmentSchedulePage";
public const string AppointmentsPage = "AppointmentsPage";
public const string AuthPage = "AuthPage";
public const string HealthCareProviderPage = "HealthCareProviderPage";
public const string Logout = "Logout";
public const string MainPage = "MainPage";
public const string ProviderListPage = "ProviderListPage";
}
public class Parameters
{
public const string ForSelection = "ForSelection";
public const string Id = "Id";
public const string ProviderId = "ProviderId";
}
}
}