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