PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/IngredientSearchModel.cs

10 lines
194 B
C#
Raw Normal View History

2024-05-15 21:22:01 +04:00
namespace SushiBarContracts.SearchModels
{
public class IngredientSearchModel
{
public string? IngredientName { get; set; }
public double? Cost { get; set; }
}
}