18 lines
602 B
C#
Raw Normal View History

2024-05-08 14:52:50 +04:00
using MedicalDatabaseContracts.Models;
using System.ComponentModel;
namespace MedicalDatabaseContracts.ViewModels
{
public abstract class AbstractPersonViewModel : AbstractViewModel
2024-05-08 14:52:50 +04:00
{
[DisplayName("Имя")]
public string Name { get; set; } = string.Empty;
[DisplayName("Фамилия")]
public string Surname { get; set; } = string.Empty;
[DisplayName("Отчество")]
public string Patronymic { get; set; } = string.Empty;
[DisplayName("Телефон")]
public string PhoneNumber { get; set; } = string.Empty;
}
}