Skip to content
Snippets Groups Projects
Commit 80c8ae97 authored by sbarker's avatar sbarker
Browse files

Updated dish dto with Id.

Added new holidays calendar to the beckman calendar.
parent 6ad984c6
Branches master
No related tags found
No related merge requests found
......@@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<Version>2.3.0</Version>
<Authors>areynold</Authors>
<Version>2.5.0</Version>
<Authors>areynold, sbarker</Authors>
<Company>Beckman Institute for Advanced Science &amp; Technology; University of Illinois at Urbana-Champaign</Company>
<Copyright>Copyright 2018, University of Illinois Board of Trustees</Copyright>
<Description>Model classes for use with the Beckman Institute Communications web API.</Description>
......@@ -11,7 +11,11 @@
<RepositoryUrl>https://gitlab.engr.illinois.edu/beckmancomms/beckmancomms-api-datatransferobjects.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>mvc, dto, api, beckman, uiuc, illinois</PackageTags>
<PackageReleaseNotes>2.3:
<PackageReleaseNotes>2.5
* Added holiday calendard to the Beckman Calendars list.
2.4
* Added Id to the cafe menu item objects.
2.3:
* Added primary group to person entry.
2.2:
* Added group parent abbreviation to group types objects.
......@@ -85,11 +89,11 @@
* Package initial v1, v2 data transfer objects.
</PackageReleaseNotes>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyVersion>2.3.0.0</AssemblyVersion>
<AssemblyVersion>2.5.0.0</AssemblyVersion>
<PackageLicenseUrl>https://gitlab.engr.illinois.edu/beckmancomms/beckmancomms-api-datatransferobjects/blob/master/License.md</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<FileVersion>2.3.0.0</FileVersion>
<FileVersion>2.5.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard1.4|AnyCPU'">
......
......@@ -7,6 +7,10 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe
/// </summary>
public class DishDto
{
/// <summary>
/// The name of the dish.
/// </summary>
public int Id { get; set; }
/// <summary>
/// The name of the dish.
/// </summary>
......
......@@ -13,6 +13,12 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Events
[Description("The main Beckman Institute event calendar.")]
BeckmanInstitute = 4595,
/// <summary>
/// University holiday calendar
/// </summary>
[Description("The uofi holiday calendar.")]
Holidays = 468,
/// <summary>
/// CNL calendar.
/// </summary>
......
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