ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/BindingModels/ClientBindingModel.cs

14 lines
388 B
C#
Raw Permalink Normal View History

2024-05-11 21:16:59 +04:00
using SoftwareInstallationDataModels.Models;
namespace SoftwareInstallationContracts.BindingModels
{
public class ClientBindingModel : IClientModel
{
public int Id { get; set; }
public string ClientFIO { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}