nitro-react/src/views/room/messages/RoomWidgetMessage.ts

15 lines
202 B
TypeScript
Raw Normal View History

2021-06-17 19:23:34 +02:00
export class RoomWidgetMessage
{
private _type: string;
constructor(type: string)
{
this._type = type;
}
public get type(): string
{
return this._type;
}
}