ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/SearchModels/ClientSearchModel.cs

14 lines
283 B
C#
Raw Normal View History

2024-05-11 21:16:59 +04:00
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; }
}
}