2023-04-08 19:57:10 +04:00
|
|
|
|
|
|
|
|
|
namespace BankDataModels.Models
|
|
|
|
|
{
|
2023-04-08 22:43:54 +04:00
|
|
|
|
public interface IClientModel : IId
|
2023-04-08 19:57:10 +04:00
|
|
|
|
{
|
2023-04-09 12:14:52 +04:00
|
|
|
|
string ClientFIO { get; }
|
|
|
|
|
string ClientPassword { get; }
|
|
|
|
|
string ClientLogin { get; }
|
|
|
|
|
string ClientEmail { get; }
|
|
|
|
|
string ClientNumber { get; }
|
2023-04-08 19:57:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|