Newer
Older
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
using System.ComponentModel;
namespace BeckmanComms.Api.DataTransferObjects.V2.Events
{
/// <summary>
/// Names and calendar IDs of Beckman Institute event calendars.
/// </summary>
public enum BeckmanCalendars
{
/// <summary>
/// Main Beckman Institute calendar.
/// </summary>
[Description("The main Beckman Institute event calendar.")]
BeckmanInstitute = 4595,
/// <summary>
/// CNL calendar.
/// </summary>
[Description("Calendar for the Cognitive Neuroimaging Laboratory (CNL) at the Beckman Institute.")]
CnlEvents = 4521,
/// <summary>
/// ILLI calendar.
/// </summary>
[Description("Calendar for the Illinois Language and Literacy Initiative (ILLI) at the Beckman Institute.")]
IlliEvents = 5511,
/// <summary>
/// LBC calendar.
/// </summary>
[Description("Calendar for the Lifelong Brain and Cognition Laboratory (LBC) at the Beckman Institute.")]
LbcLab = 4669,
/// <summary>
/// MSL calendar.
/// </summary>
[Description("Calendar for the Memory Systems Lab (MSL) at the Beckman Institute.")]
MslEvents = 4470
}
}