10 lines
313 B
C#
Raw Permalink Normal View History

2023-04-07 14:13:18 +04:00
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();
}
}