15 lines
360 B
C#
15 lines
360 B
C#
namespace BankDataModels.Models
|
|
{
|
|
public interface IClientModel
|
|
{
|
|
string Snils { get; }
|
|
string ClientSurname { get; }
|
|
string ClientName { get; }
|
|
string ClientPatronymic { get; }
|
|
string Phone { get; }
|
|
string? Email { get; }
|
|
string PasswordHash { get; }
|
|
int WorkerId { get; }
|
|
}
|
|
}
|