2024-05-02 00:03:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
|
|
|
{
|
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
|
|
|
|
}
|
|
|
|
|
}
|