AipLabel.cs 330 B

12345678910111213
  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 List<AipLabel> Children { get; set; }
  9. public int Sensitivity { get; set; }
  10. public string Description { get; set; }
  11. }
  12. }