PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/BindingModels/IngredientBindingModel.cs
2024-05-16 17:13:55 +04:00

14 lines
305 B
C#

namespace SushiBarContracts.BindingModels
{
public class IngredientBindingModel
{
public int Id { get; set; }
public string IngredientName { get; set; } = string.Empty;
public string Unit { get; set; } = string.Empty;
public double Cost { get; set; }
}
}