15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PolyclinicContracts.ViewModels
|
|
{
|
|
public class ReportCoursesByProcedureViewModel
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public List<(int countDays, int pillsPerDay, string comment)> Courses = new();
|
|
}
|
|
}
|