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

minor reformat

parent cdc00579
No related branches found
No related tags found
No related merge requests found
...@@ -43,20 +43,21 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe ...@@ -43,20 +43,21 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe
public double? HalfPrice { get; set; } public double? 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
/// as an occasional specialty item (<c>DishDto.Specialty == true</c>). /// as an occasional specialty item ( <c>DishDto.Specialty == true</c>).
/// </summary> /// </summary>
public bool Specialty { get; set; } public bool Specialty { get; set; }
/// <summary> /// <summary>
/// Indicates whether the item is in-stock (<c>DishDto.SoldOut == false</c>) or /// Indicates whether the item is in-stock ( <c>DishDto.SoldOut == false</c>) or sold-out (
/// sold-out (<c>DishDto.SoldOut == true</c>). /// <c>DishDto.SoldOut == true</c>).
/// </summary> /// </summary>
public bool SoldOut { get; set; } public bool SoldOut { get; set; }
/// <summary> /// <summary>
/// Indicates whether the item should not be displayed as a featured item (<c>DishDto.Featured == false</c>) or /// Indicates whether the item should not be displayed as a featured item (
/// should be displayed as a featured item (<c>DishDto.SoldOut == true</c>). /// <c>DishDto.Featured == false</c>) or should be displayed as a featured item (
/// <c>DishDto.SoldOut == true</c>).
/// </summary> /// </summary>
public bool Featured { get; set; } public bool Featured { get; set; }
......
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