PIbd-22_Turner_I.A._Plumbin.../PlumbingRepair/PlumbingRepairContracts/SearchModels/ClientSearchModel.cs

11 lines
274 B
C#
Raw Normal View History

2023-04-04 19:52:14 +04:00
namespace PlumbingRepairContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}