Rogashova_E.A._CourseWork_H.../HospitalContracts/ViewModels/ProceduresViewModel.cs

20 lines
564 B
C#

using HospitalDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.ViewModels
{
public class ProceduresViewModel: IProceduresModel
{
public int Id { get; set; }
[DisplayName("Название процедуры")]
public string ProceduresName { get; set; } = string.Empty;
[DisplayName("Тип процедуры")]
public string Type { get; set; } = string.Empty;
}
}