PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicContracts/ViewModels/ReportCoursesByProcedures.cs

15 lines
364 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PolyclinicContracts.ViewModels
{
public class ReportCoursesByProcedures
{
public string Name { get; set; } = string.Empty;
public List<(int countDays, int pillsPerDay, string comment)> Courses = new();
}
}