- using System.Collections.Generic;
- namespace AipGateway.AIP
- {
- public class AipLabel
- {
- public string Id { get; set; }
- public string Name { get; set; }
- public List<AipLabel> Children { get; set; }
- public int Sensitivity { get; set; }
- public string Description { get; set; }
- }
- }
|