10 lines
313 B
C#
10 lines
313 B
C#
namespace VeterinaryClinicContracts.ViewModels
|
|
{
|
|
public class ReportMedicineMedicationViewModel
|
|
{
|
|
public string MedicineName { get; set; } = string.Empty;
|
|
public int TotalCount { get; set; }
|
|
public List<(string Medication, int Count)> Medications { get; set; } = new();
|
|
}
|
|
}
|