PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/IngredientSearchModel.cs
2024-05-16 17:13:55 +04:00

12 lines
232 B
C#

namespace SushiBarContracts.SearchModels
{
public class IngredientSearchModel
{
public int? Id { get; set; }
public string? IngredientName { get; set; }
public double? Cost { get; set; }
}
}