Skip to content
Snippets Groups Projects
Commit 4466178e authored by areynold's avatar areynold
Browse files

Merge branch 'release/2.0.0-alpha03'

parents 1f40cc2c a07a83e9
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,11 @@
<projectUrl>https://gitlab.engr.illinois.edu/beckmancomms/beckmancomms-api-datatransferobjects</projectUrl>
<description>Model classes for use with the Beckman Institute web API.</description>
<summary>Model classes for use with the Beckman Institute web API.</summary>
<releaseNotes>2.0.0-alpha02:
<releaseNotes>
2.0.0-alpha03:
* Use decimal instead of double for DishDto prices.
2.0.0-alpha02:
* Add V2 cafe DTOs.
2.0.0-alpha01:
......@@ -35,7 +39,8 @@
* Add v1, v2 docstrings.
0.0.1:
* Package initial v1, v2 data transfer objects.</releaseNotes>
* Package initial v1, v2 data transfer objects.
</releaseNotes>
<copyright>Copyright 2017, University of Illinois Board of Trustees</copyright>
<language>en-US</language>
<tags>mvc, dto, api, beckman, uiuc, illinois</tags>
......
......@@ -35,12 +35,12 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe
/// <summary>
/// The standard price of the dish.
/// </summary>
public double StandardPrice { get; set; }
public decimal StandardPrice { get; set; }
/// <summary>
/// The price of a half-order of the dish, when available.
/// </summary>
public double? HalfPrice { get; set; }
public decimal? HalfPrice { get; set; }
/// <summary>
/// Indicates whether the item is available every day ( <c>DishDto.Specialty == false</c>) or
......
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