ln.identities/Roles.cs

21 lines
422 B
C#

// /**
// * File: Roles.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.identities
{
public class Roles : int
{
SUPERUSER = -1,
READ = (1<<0),
WRITE = (1<<1)
OWNER,
}
}