PIbd-22_CourseWork_Hospital.../Polyclinic/HospitalContracts/BindingModels/RecipeBindingModel.cs

13 lines
416 B
C#
Raw Normal View History

2024-05-01 23:49:06 +04:00
using HospitalDataModels.Models;
namespace HospitalContracts.BindingModels
{
public class RecipeBindingModel : IRecipeModel
{
public int Id { get; set; }
public int? CourseId { get; set; }
public int ProceduresCount { get; set; }
public string Comment { get; set; } = string.Empty;
public Dictionary<int, IProcedureModel> RecipeProcedures { get; } = new();
}
}