16 lines
369 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicBusinessLogic.ViewModels
{
public class ReportVisitServiceViewModel
{
public DateTime? VisitDate { get; set; }
public List<string> Services { get; set; }
public int TotalCount { get; set; }
}
}