2023-05-20 06:49:33 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HospitalContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportKurseMedicinesViewModel
|
|
|
|
|
{
|
2023-06-19 13:29:55 +04:00
|
|
|
|
public string MedicinesName { get; set; } = string.Empty;
|
|
|
|
|
public List<Tuple<int, string>> Kurses { get; set; } = new();
|
2023-05-20 06:49:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|