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