using System; namespace Platform.Areas.IoTCenter.ViewModels { public class NodeViewModel { public Guid Id { get; set; } public string Number { get; set; } public string Name { get; set; } public string Image { get; set; } public string Template { get; set; } public int DeviceCount { get; set; } } }