ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/BindingModels/IngredientBindingModel.cs

13 lines
299 B
C#
Raw Normal View History

2024-02-09 15:31:49 +04:00
using SushiBarDataModels.Models;
namespace SushiBarContracts.BindingModels
{
public class IngredientBindingModel : IIngredientModel
{
public int Id { get; set; }
public string IngredientName { get; set; } = string.Empty;
public double Cost { get; set; }
}
}