From f4666880082d4710d94c2c1fd8775f4a07842940 Mon Sep 17 00:00:00 2001 From: Andrew Reynolds <areynold@illinois.edu> Date: Thu, 26 Apr 2018 15:03:22 -0500 Subject: [PATCH] minor reformat --- .../V2/Cafe/DishDto.cs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs b/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs index f51e2d0..93f4d9b 100644 --- a/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs +++ b/BeckmanComms.Api.DataTransferObjects/V2/Cafe/DishDto.cs @@ -43,20 +43,21 @@ namespace BeckmanComms.Api.DataTransferObjects.V2.Cafe public double? HalfPrice { get; set; } /// <summary> - /// Indicates whether the item is available every day (<c>DishDto.Specialty == false</c>) or - /// as an occasional specialty item (<c>DishDto.Specialty == true</c>). + /// Indicates whether the item is available every day ( <c>DishDto.Specialty == false</c>) or + /// as an occasional specialty item ( <c>DishDto.Specialty == true</c>). /// </summary> public bool Specialty { get; set; } /// <summary> - /// Indicates whether the item is in-stock (<c>DishDto.SoldOut == false</c>) or - /// sold-out (<c>DishDto.SoldOut == true</c>). + /// Indicates whether the item is in-stock ( <c>DishDto.SoldOut == false</c>) or sold-out ( + /// <c>DishDto.SoldOut == true</c>). /// </summary> public bool SoldOut { get; set; } /// <summary> - /// Indicates whether the item should not be displayed as a featured item (<c>DishDto.Featured == false</c>) or - /// should be displayed as a featured item (<c>DishDto.SoldOut == true</c>). + /// Indicates whether the item should not be displayed as a featured item ( + /// <c>DishDto.Featured == false</c>) or should be displayed as a featured item ( + /// <c>DishDto.SoldOut == true</c>). /// </summary> public bool Featured { get; set; } -- GitLab