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 GroupMember
|
|
|
|
|
{
|
2025-01-17 23:37:54 +00:00
|
|
|
public AgentID: UUID;
|
|
|
|
|
public OnlineStatus: string;
|
|
|
|
|
public AgentPowers: Long;
|
|
|
|
|
public Title: string;
|
|
|
|
|
public IsOwner: boolean;
|
2020-01-06 12:10:40 +00:00
|
|
|
}
|