представление доктора

This commit is contained in:
ValAn 2024-04-12 23:38:31 +04:00
parent e9185fa7dc
commit fa0258b99c
2 changed files with 30 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>

View File

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.ViewModels
{
internal class DoctorViewModel
{
public int Id { get; set; }
[DisplayName("ФИО")]
string FIO { get; }
[DisplayName("Логин")]
string Login { get; }
[DisplayName("Пароль")]
string Password { get; }
[DisplayName("Электронная почта")]
string MailAddress { get; }
[DisplayName("Номер телефона")]
string PhoneNumber { get; }
}
}