33 lines
813 B
C#
33 lines
813 B
C#
|
using BankYouBankruptDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankYouBankruptContracts.ViewModels
|
|||
|
{
|
|||
|
public class CashierViewModel : ICashierModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Имя")]
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Фамилия")]
|
|||
|
public string Surname { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Отчество")]
|
|||
|
public string Patronymic { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Телефон")]
|
|||
|
public string Telephone { get; set; } = string.Empty;
|
|||
|
|
|||
|
[DisplayName("Почта")]
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|