namespace PolyclinicDataModels.Models { public interface IRecipeModel : IId { int ProceduresCount { get; set; } string Comment { get; set; } int? CourseId { get; set; } Dictionary RecipeProcedures { get; } } }