Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceStationContracts/SearchModels/ClientSearchModel.cs
2024-04-30 01:41:35 +03:00

12 lines
229 B
C#

namespace ServiceStationContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? LastName { get; set; }
public string? Email { get; set; }
}
}