2024-08-22 20:40:32 +04:00

9 lines
179 B
C#

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