1: <?php
2:
3: namespace Aurora\Modules\Calendar\Enums;
4:
5: class Permission extends \Aurora\System\Enums\AbstractEnumeration
6: {
7: public const RemovePermission = -1;
8: public const Write = 1;
9: public const Read = 2;
10:
11: /**
12: * @var array
13: */
14: protected $aConsts = array(
15: 'RemovePermission' => self::RemovePermission,
16: 'Write' => self::Write,
17: 'Read' => self::Read
18:
19: );
20: }
21: