PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarContracts/SearchModels/IngredientSearchModel.cs

10 lines
189 B
C#
Raw Normal View History

2023-01-31 15:23:18 +04:00
namespace SushiBarContracts.SearchModels
{
public class IngredientSearchModel
{
public int? Id { get; set; }
public string? IngredientName { get; set; }
}
}