2024-05-29 01:12:32 +04:00
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
2024-05-02 00:03:06 +04:00
|
|
|
|
{
|
2024-05-02 01:00:43 +04:00
|
|
|
|
public class ReportCoursesByProcedureViewModel
|
2024-05-02 00:03:06 +04:00
|
|
|
|
{
|
2024-05-02 00:46:07 +04:00
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public List<(int countDays, int pillsPerDay, string comment)> Courses = new();
|
2024-05-02 00:03:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|