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

use decimal for dish prices

parent 11b954e7
No related branches found
No related tags found
No related merge requests found
......@@ -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