2024-05-24 01:56:34 +04:00
|
|
|
|
using SushiBarDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace SushiBarContracts.BindingModels
|
2024-05-15 21:37:18 +04:00
|
|
|
|
{
|
2024-05-24 01:56:34 +04:00
|
|
|
|
public class IngredientBindingModel : IIngredientModel
|
2024-05-15 21:37:18 +04:00
|
|
|
|
{
|
2024-05-16 17:13:55 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-15 21:37:18 +04:00
|
|
|
|
public string IngredientName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Unit { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public double Cost { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|