20 lines
519 B
C#
20 lines
519 B
C#
using ServiceStationDataModels.Models;
|
|
using System.ComponentModel;
|
|
|
|
namespace ServiceStationContracts.ViewModels
|
|
{
|
|
public class ClientViewModel : IClientModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
[DisplayName("ФИО")]
|
|
public string FIO { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Пароль")]
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
[DisplayName("Логин пользователя")]
|
|
public string Login { get; set; } = string.Empty;
|
|
}
|
|
}
|