PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/BindingModels/IngredientBindingModel.cs

12 lines
268 B
C#
Raw Normal View History

2024-05-15 21:37:18 +04:00
namespace SushiBarContracts.BindingModels
{
public class IngredientBindingModel
{
public string IngredientName { get; set; } = string.Empty;
public string Unit { get; set; } = string.Empty;
public double Cost { get; set; }
}
}