2023-03-23 00:58:36 +04:00

9 lines
203 B
C#

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