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