ModuleConstants.cs
1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System;
namespace Sungero.Shell.Constants
{
public static class Module
{
/// <summary>
/// Гуид входящего письма.
/// </summary>
public const string IncomingLetterGuid = "8dd00491-8fd0-4a7a-9cf3-8b6dc2e6455d";
#region Виджеты
#region Идентификаторы значений серий
public const string OverduedAssignments = "Overdued";
public const string NotOverduedAssignments = "NotOverdued";
public static class TodayAssignments
{
public const string CompletedToday = "CompletedToday";
public const string DeadlineToday = "DeadlineToday";
public const string OverdueToday = "OverdueToday";
public const string DeadlineTomorrow = "DeadlineTomorrow";
public const string AfterTomorrow = "AfterTomorrow";
public const string EndOfWeek = "EndOfWeek";
public const string NextEndOfWeek = "NextEndOfWeek";
public const string EndOfMonth = "EndOfMonth";
}
#endregion
#endregion
// Цвета графиков.
public static class Colors
{
public const string Red = "#FF5000";
public const string Orange = "#E89314";
public const string Yellow = "#FCC72F";
public const string LightYellowGreen = "#BAC238";
public const string YellowGreen = "#7DAB3A";
public const string Green = "#4FAA37";
}
// Режимы фильтрации заданий.
public static class FilterAssignmentsMode
{
public const string Default = "Default";
public const string Created = "Created";
public const string Modified = "Modified";
public const string Completed = "Completed";
}
}
}