PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemContracts/SearchModels/ShopSearchModel.cs

9 lines
178 B
C#
Raw Normal View History

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