Files
node-metaverse/lib/classes/GroupMember.ts
2025-01-17 23:53:31 +00:00

12 lines
256 B
TypeScript

import type { UUID } from './UUID';
import type * as Long from 'long';
export class GroupMember
{
public AgentID: UUID;
public OnlineStatus: string;
public AgentPowers: Long;
public Title: string;
public IsOwner: boolean;
}