ISEbd-21_Agliullov.D.A._Con.../ConfectioneryContracts/SearchModels/ShopSearchModel.cs

10 lines
178 B
C#
Raw Normal View History


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