11 lines
193 B
C#
11 lines
193 B
C#
|
namespace PizzeriaDataModels.Models
|
|||
|
{
|
|||
|
public interface IClientModel : IId
|
|||
|
{
|
|||
|
string ClientFIO { get; }
|
|||
|
string Email { get; }
|
|||
|
string Password { get; }
|
|||
|
}
|
|||
|
|
|||
|
}
|