20 lines
503 B
C#
Raw Normal View History

using ServiceStationDataModels.Models;
2024-04-30 01:41:35 +03:00
using System.ComponentModel;
namespace ServiceStationContracts.ViewModels
{
public class ClientViewModel : IClientModel
{
[DisplayName("ФИО")]
public string FIO { get; set; } = string.Empty;
2024-04-30 01:41:35 +03:00
[DisplayName("Пароль")]
public string Password { get; set; } = string.Empty;
2024-04-30 01:41:35 +03:00
[DisplayName("Бонусы")]
public int Points { get; set; }
2024-04-30 01:41:35 +03:00
public int Id { get; set; }
2024-04-30 01:41:35 +03:00
}
}