12 lines
206 B
C#
Raw 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; }
}
}