32 lines
930 B
C#
32 lines
930 B
C#
using BankDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.ViewModels
|
|
{
|
|
public class ClientViewModel : IClientModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("ФИО метрдотеля")]
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Пароль метрдотеля")]
|
|
public string ClientPassword { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Логин метрдотеля")]
|
|
public string ClientLogin { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Mail метрдотеля")]
|
|
public string ClientEmail { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Телефон метрдотеля")]
|
|
public string ClientNumber { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|