ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/Models/IClientModel.cs

12 lines
206 B
C#
Raw Permalink Normal View History

2024-05-11 21:16:59 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}