16 lines
274 B
C#
16 lines
274 B
C#
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
|
|
}
|
|
}
|