PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/SearchModels/IngredientSearchModel.cs
2024-05-15 21:22:01 +04:00

10 lines
194 B
C#

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