2023-03-26 22:01:47 +04:00

11 lines
205 B
C#

namespace SoftwareInstallationDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}