using System; using System.Collections.Generic; using System.Text; namespace InABox.Core { public interface ISecurityToken { string Descriptor { get; set; } bool Enabled { get; set; } } }