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