mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2026-06-13 09:46:41 +02:00
18 lines
286 B
C#
18 lines
286 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaksIT.CertsUI.Engine;
|
|
|
|
[Flags]
|
|
public enum ScopePermission : ushort {
|
|
None = 0,
|
|
|
|
Read = 1 << 0,
|
|
Write = 1 << 1,
|
|
Delete = 1 << 2,
|
|
Create = 1 << 3,
|
|
}
|