представление доктора
This commit is contained in:
parent
e9185fa7dc
commit
fa0258b99c
@ -1,4 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
|
29
Hospital/HospitalContracts/ViewModels/DoctorViewModel.cs
Normal file
29
Hospital/HospitalContracts/ViewModels/DoctorViewModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user