11 lines
205 B
C#
Raw Normal View History

2023-03-26 22:01:47 +04:00
namespace SoftwareInstallationDataModels.Models
{
public interface IClientModel : IId
{
string ClientFIO { get; }
string Email { get; }
string Password { get; }
}
}