2025-01-17 23:37:54 +00:00
|
|
|
import type { UUID } from './UUID';
|
|
|
|
|
import type * as Long from 'long';
|
2017-12-15 21:28:45 +00:00
|
|
|
|
|
|
|
|
export class GroupRole
|
|
|
|
|
{
|
2025-01-17 23:37:54 +00:00
|
|
|
public RoleID: UUID;
|
|
|
|
|
public Name: string;
|
|
|
|
|
public Title: string;
|
|
|
|
|
public Description: string;
|
|
|
|
|
public Powers: Long;
|
|
|
|
|
public Members: number;
|
2020-01-06 12:10:40 +00:00
|
|
|
}
|