LabSubd/Subd/Contracts/ViewModels/HumanVM.cs

25 lines
661 B
C#
Raw Normal View History

using DataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.ViewModels
{
public class HumanVM : IHuman
{
[DisplayName("ФИО")]
public string Name { get; set; } = string.Empty;
[DisplayName("Телефон")]
public string Phone { get; set; } = string.Empty;
public int? StatusId { get; set; }
[DisplayName("Статус")]
2023-05-05 21:47:09 +04:00
public string? StatusTitle { get; set; } = string.Empty;
[DisplayName("Номер")]
public int Id { get; set; }
}
}