| using System;using System.Collections.Generic;using System.Text;namespace ProductionLineMonitor.Application.Services.AdminService.Dtos{    public class zNode    {        public string Id { get; set; }        public string PId { get; set; }        public string Name { get; set; }        public bool Open { get; set; }    }}
 |