17 lines
388 B
C#
17 lines
388 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 int TotalPoints { get; set; }
|
||
}
|
||
}
|