ISEbd-21_Koscheev.M.S.Softw.../SoftwareInstallation/SoftwareInstallationContracts/SearchModels/ShopSearchModel.cs
2023-03-06 00:18:18 +04:00

10 lines
185 B
C#

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