16 lines
361 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicBusinessLogic.ViewModels
{
public class ReportServiceVisitViewModel
{
public string Name { get; set; }
public List<DateTime> Visits { get; set; }
public int TotalCount { get; set; }
}
}