using System.Collections.Generic; namespace Platform.Areas.IoTCenter.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(); } }