PIbd-23_Elatomtsev_L.K._Con.../Confectionery/ConfectioneryContracts/SearchModels/ShopSearchModel.cs

9 lines
156 B
C#
Raw Normal View History

2024-06-20 06:10:16 +04:00
namespace ConfectioneryContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}