using BankDataModels.Models; using System.ComponentModel; namespace BankContracts.ViewModels { public class ClientViewModel : IClientModel { [DisplayName("СНИЛС")] public string Snils { get; set; } = string.Empty; [DisplayName("Фамилия")] public string ClientSurname { get; set; } = string.Empty; [DisplayName("Имя")] public string ClientName { get; set; } = string.Empty; [DisplayName("Отчество")] public string ClientPatronymic { get; set; } = string.Empty; [DisplayName("Телефон")] public string Phone { get; set; } = string.Empty; [DisplayName("Почта")] public string? Email { get; set; } = string.Empty; [DisplayName("Идентификатор работника")] public int WorkerId { get; set; } [DisplayName("Хэш пароля")] public string PasswordHash { get; set; } = string.Empty; public Dictionary ClientPrograms { get; set; } = new(); public Dictionary ClientDeposits { get; set; } = new(); } }