using System.Collections.Generic; namespace BusinessERP.Models.DashboardViewModel { public class GroupByViewModel { public string ItemName { get; set; } public double? ItemTotal { get; set; } public List listGroupByViewModel { get; set; } } }