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

9 lines
176 B
C#
Raw Normal View History

2023-02-13 23:13:13 +04:00
namespace SushiBarContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? ShopName { get; set; }
}
}