2024-04-29 23:23:23 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryDataModels.Models
|
|
|
|
|
{
|
2024-06-02 19:51:08 +04:00
|
|
|
|
public interface IClientModel : IId
|
2024-04-29 23:23:23 +04:00
|
|
|
|
{
|
|
|
|
|
string ClientFIO { get; }
|
|
|
|
|
string Email { get; }
|
|
|
|
|
string Password { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|