PIbd-22_Shabunov_O.A._SushiBar/SushiBarDataModels/Models/IIngredientModel.cs

12 lines
198 B
C#
Raw Normal View History

2024-05-15 15:07:09 +04:00
namespace SushiBarDataModels.Models
{
2024-05-24 01:56:34 +04:00
public interface IIngredientModel : IId
2024-05-15 15:07:09 +04:00
{
string IngredientName { get; }
string Unit { get; }
double Cost { get; }
}
}