9 lines
179 B
C#
Raw Normal View History

2024-04-30 01:41:35 +03:00
namespace ServiceStationContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
2024-08-22 20:40:32 +04:00
public string? fio { get; set; }
2024-04-30 01:41:35 +03:00
}
}