2021-11-27 02:10:56 +00:00
|
|
|
namespace Myriad.Types;
|
|
|
|
|
|
|
|
public record Role
|
2020-12-22 12:15:26 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public ulong Id { get; init; }
|
|
|
|
public string Name { get; init; }
|
2022-06-03 08:39:29 +00:00
|
|
|
// public uint Color { get; init; }
|
|
|
|
// public bool Hoist { get; init; }
|
2021-11-27 02:10:56 +00:00
|
|
|
public int Position { get; init; }
|
|
|
|
public PermissionSet Permissions { get; init; }
|
2022-06-03 08:39:29 +00:00
|
|
|
// public bool Managed { get; init; }
|
2021-11-27 02:10:56 +00:00
|
|
|
public bool Mentionable { get; init; }
|
2020-12-22 12:15:26 +00:00
|
|
|
}
|