AipLabel.cs 373 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace AipGateway.AIP
  3. {
  4. public class AipLabel
  5. {
  6. public string Id { get; set; }
  7. public string Name { get; set; }
  8. public int Sensitivity { get; set; }
  9. public string Description { get; set; }
  10. public bool IsActive { get; set; }
  11. public List<AipLabel> Children { get; set; }
  12. }
  13. }