Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationContracts/SearchModels/ClientSearchModel.cs

11 lines
181 B
C#
Raw Normal View History

2024-04-30 02:41:35 +04:00
namespace ServiceStationContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? FIO { get; set; }
2024-04-30 02:41:35 +04:00
}
}