12 lines
193 B
C#
12 lines
193 B
C#
|
namespace SushiBarDataModels.Models
|
|||
|
{
|
|||
|
public interface IIngredient : IId
|
|||
|
{
|
|||
|
string IngredientName { get; }
|
|||
|
|
|||
|
string Unit { get; }
|
|||
|
|
|||
|
double Cost { get; }
|
|||
|
}
|
|||
|
}
|