2024-05-19 16:01:45 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopDataModels.Models {
|
2024-05-22 23:00:35 +04:00
|
|
|
|
public interface IClientModel : IID {
|
|
|
|
|
string ClientFIO { get; }
|
2024-05-19 16:01:45 +04:00
|
|
|
|
string Email { get; }
|
2024-05-22 23:00:35 +04:00
|
|
|
|
string Password { get; }
|
2024-05-19 16:01:45 +04:00
|
|
|
|
}
|
|
|
|
|
}
|