mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 23:16:21 +00:00
22 lines
370 B
TypeScript
22 lines
370 B
TypeScript
export class GuideToolMessage
|
|
{
|
|
private _message: string;
|
|
private _roomId: number;
|
|
|
|
constructor(message: string, roomId?: number)
|
|
{
|
|
this._message = message;
|
|
this._roomId = roomId;
|
|
}
|
|
|
|
public get message(): string
|
|
{
|
|
return this._message;
|
|
}
|
|
|
|
public get roomId(): number
|
|
{
|
|
return this._roomId;
|
|
}
|
|
}
|