ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarContracts/SearchModels/IngredientSearchModel.cs

10 lines
189 B
C#
Raw Normal View History

2024-02-09 15:31:49 +04:00
namespace SushiBarContracts.SearchModels
{
public class IngredientSearchModel
{
public int? Id { get; set; }
public string? IngredientName { get; set; }
}
}