10 lines
185 B
C#
10 lines
185 B
C#
|
namespace SushiBarDataModels
|
|||
|
{
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string ClientFIO { get; }
|
|||
|
string Email { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
}
|