14 lines
305 B
C#
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; }
|
|
}
|
|
}
|