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

10 lines
186 B
C#
Raw Normal View History

2024-05-15 21:22:01 +04:00
namespace SushiBarContracts.SearchModels
{
public class DishSearchModel
{
public string? DishName { get; set; }
public string? Category { get; set; }
}
}