Skip to content
Snippets Groups Projects
Commit 202a03d0 authored by areynold's avatar areynold
Browse files

add calendar enum

parent 500ea3e1
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.ComponentModel" Version="4.3.0" />
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
</ItemGroup>
......
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
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment