ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/SearchModels/ClientSearchModel.cs
Максим Куклев a2e5503710 загрузил
2024-05-11 21:16:59 +04:00

14 lines
283 B
C#

namespace SoftwareInstallationContracts.SearchModels
{
public class ClientSearchModel
{
public int? Id { get; set; }
public string? ClientFIO { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}