Rogashova_E.A._CourseWork_H.../HospitalContracts/ViewModels/ReportKurseMedicinesViewModel.cs

15 lines
358 B
C#
Raw Normal View History

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
{
public string MedicinesName { get; set; } = string.Empty;
public List<Tuple<int, string>> Kurses { get; set; } = new();
2023-05-20 06:49:33 +04:00
}
}