using Application.Domain.Entities; using System.Collections.Generic; namespace Application.Models { public class HomeViewModel { public Node Node { get; set; } = new Node(); public List Devices { get; set; } = new List(); public List Scenes { get; set; } = new List(); } }