Добавлен класс view модели клиента

This commit is contained in:
Никита Потапов 2024-04-06 14:20:25 +04:00
parent 08fbeb87c1
commit a297252595

View File

@ -0,0 +1,16 @@
using SecuritySystemDataModels.Models;
using System.ComponentModel;
namespace SecuritySystemContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
public int Id { get; set; }
[DisplayName("ФИО клиента")]
public string ClientFIO { get; set; } = string.Empty;
[DisplayName("Логин (эл. почта)")]
public string Email { get; set; } = string.Empty;
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
}
}