using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UniversalEditor.ObjectModels.Concertroid { public enum PermissionStatus { Unknown = -1, Denied = 0, Approved = 1, Pending = 2 } }