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