zNode.cs 340 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.AdminService.Dtos
  5. {
  6. public class zNode
  7. {
  8. public string Id { get; set; }
  9. public string PId { get; set; }
  10. public string Name { get; set; }
  11. public bool Open { get; set; }
  12. }
  13. }