20 lines
539 B
C#
Raw Normal View History

2023-04-26 08:41:25 +04:00
using ComputersShopDataModels.Models;
using System.ComponentModel;
namespace ComputersShopContracts.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;
}
}