using Application.Domain.Entities; using System.Collections.Generic; namespace IoTCenter.Areas.Admin.ViewModels { public class HomeIndexViewModel { public List Nodes { get; set; } = new List(); public List Categories { get; set; } = new List(); public List Products { get; set; } = new List(); } }