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