-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSettingsConstants.cs
More file actions
35 lines (32 loc) · 1.7 KB
/
SettingsConstants.cs
File metadata and controls
35 lines (32 loc) · 1.7 KB
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
namespace Unity.GrantManager.Settings
{
public static class SettingsConstants
{
public const string SectorFilterName = "GrantManager.Locality.SectorFilter";
public const string RegionalDistrictsCacheKey = "RegionalDistrictCache";
public const string ElectoralDistrictsCacheKey = "ElectoralDistrictCache";
public const string EconomicRegionsCacheKey = "EconomicRegionCache";
public const string CommunitiesCacheKey = "CommunitiesCache";
public const double DefaultLocalityCacheHours = 48;
public static class UI
{
public const string Zones = "GrantManager.UI.Zones";
public static class Tabs
{
public const string Default = "GrantManager.UI.Tabs";
public const string Submission = "GrantManager.UI.Tabs.Submission";
public const string Assessment = "GrantManager.UI.Tabs.Assessment";
public const string Project = "GrantManager.UI.Tabs.Project";
public const string Applicant = "GrantManager.UI.Tabs.Applicant";
public const string Payments = "GrantManager.UI.Tabs.Payments";
public const string FundingAgreement = "GrantManager.UI.Tabs.FundingAgreement";
}
}
public static class BackgroundJobs
{
public const string IntakeResync_Expression = "GrantManager.BackgroundJobs.IntakeResync_Expression";
public const string IntakeResync_NumDaysToCheck = "GrantManager.BackgroundJobs.IntakeResync_NumDaysToCheck";
public const string DataHealthCheckMonitor_Expression = "GrantManager.BackgroundJobs.DataHealthCheckMonitor_Expression";
}
}
}