ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/ShopSearchModel.cs
2023-02-05 14:44:03 +04:00

10 lines
178 B
C#

namespace ConfectioneryContracts.SearchModels
{
public class ShopSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}