-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConst.cs
24 lines (22 loc) · 932 Bytes
/
Const.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 TypicalReply
{
internal static class Const
{
internal static class RegistryPath
{
internal static readonly string DefaultPolicy = @"SOFTWARE\Policies\TypicalReply\Default";
internal static readonly string Policy = @"SOFTWARE\Policies\TypicalReply";
}
internal static class Config
{
internal static readonly string FileName = @"TypicalReplyConfig.json";
internal static readonly string DefaultConfigFolderName = @"DefaultConfig";
}
internal static class Button
{
internal static readonly string TabMailGroupId = "TypicalReplyTabMailGroup";
internal static readonly string TabReadMessageGroupId = "TypicalReplyTabReadMessageGroup";
internal static readonly string ContextMenuGalleryId = "TypicalReplyContextMenuGallery";
}
}
}