14 lines
317 B
C#
14 lines
317 B
C#
|
using DataModels.HelperInterfaces;
|
|||
|
|
|||
|
namespace DataModels
|
|||
|
{
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string Email { get; }
|
|||
|
string FirstName { get; }
|
|||
|
string LastName { get; }
|
|||
|
string? MiddleName { get; }
|
|||
|
string PhoneNumber { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
}
|