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

10 lines
189 B
C#

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