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

16 lines
382 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalContracts.ViewModels
{
public class ReportKurseMedicinesViewModel
{
public string Title { get; set; } = string.Empty;
public int KurseId { get; set; }
public List<string> Medicines { get; set; } = new();
}
}