12 lines
268 B
C#
12 lines
268 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|