-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathConfig.Client.cs
More file actions
50 lines (49 loc) · 1.99 KB
/
Config.Client.cs
File metadata and controls
50 lines (49 loc) · 1.99 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) 2022, UW Medicine Research IT, University of Washington
// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
using System;
namespace API.Options
{
public partial class Config
{
public static class Client
{
public static class FindPatients
{
public const string Section = @"Client:FindPatients";
public const string AllowEmptyConcepts = @"Client:FindPatients:AllowEmptyConcepts";
}
public static class Map
{
public const string Section = @"Client:Map";
public const string Enabled = @"Client:Map:Enabled";
public const string TileURI = @"Client:Map:TileURI";
}
public static class Visualize
{
public const string Section = @"Client:Visualize";
public const string Enabled = @"Client:Visualize:Enabled";
public const string ShowFederated = @"Client:Visualize:ShowFederated";
}
public static class Timelines
{
public const string Section = @"Client:Timelines";
public const string Enabled = @"Client:Timelines:Enabled";
}
public static class PatientList
{
public const string Section = @"Client:PatientList";
public const string Enabled = @"Client:PatientList:Enabled";
}
public static class Help
{
public const string Section = @"Client:Help";
public const string Enabled = @"Client:Help:Enabled";
public const string Email = @"Client:Help:Email";
public const string URI = @"Client:Help:URI";
}
}
}
}