using System.Collections.Generic;
namespace AipGateway.AIP
{
public enum AipActionSource
{
/// Selected manually by user
Manual,
/// Set by policy conditions
Automatic,
/// Set by user after label was recommended by policy conditions
Recommended,
/// Set by default in policy
Default,
}
public class AipLabel
{
public string Id { get; set; }
public string Name { get; set; }
public int Sensitivity { get; set; }
public string Description { get; set; }
public bool IsActive { get; set; }
public AipActionSource ActionSource { get; set; }
public List Children { get; set; }
}
}