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