9 lines
163 B
C#
9 lines
163 B
C#
|
namespace LawFirmDataModels.Models
|
|||
|
{
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string ClientFIO { get; }
|
|||
|
string Email { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
}
|