PIbd-21_CourseWork_Polyclin.../Polyclinic/PolyclinicContracts/ViewModels/ReportCoursesByProcedures.cs
2024-05-02 00:46:07 +04:00

15 lines
364 B
C#

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();
}
}