16 lines
369 B
C#
16 lines
369 B
C#
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; }
|
|
}
|
|
}
|