using PolyclinicDataModels.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PolyclinicContracts.ViewModels { public class ProcedureView : IProcedureModel { public int Id { get; set; } [DisplayName("Название процедуры")] public string Name { get; set; } [DisplayName("Комментарий")] public string Comment { get; set; } public Dictionary ProcedureCourse { get; set; } = new(); } }