8 lines
165 B
C#
8 lines
165 B
C#
|
namespace SushiBarDataModels.Models;
|
|||
|
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string ClientFio { get; }
|
|||
|
string Email { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|