2020-01-06 12:10:40 +00:00
|
|
|
import { UUID } from '../classes/UUID';
|
2018-10-08 00:56:33 +11:00
|
|
|
|
|
|
|
|
export class ScriptDialogEvent
|
|
|
|
|
{
|
|
|
|
|
ObjectID: UUID;
|
|
|
|
|
FirstName: string;
|
|
|
|
|
LastName: string;
|
2018-10-07 17:06:54 +01:00
|
|
|
ObjectName: string;
|
2018-10-08 00:56:33 +11:00
|
|
|
Message: string;
|
|
|
|
|
ChatChannel: number;
|
|
|
|
|
ImageID: UUID;
|
2018-10-07 17:06:54 +01:00
|
|
|
Buttons: string[];
|
|
|
|
|
Owners: UUID[];
|
2018-10-08 00:56:33 +11:00
|
|
|
}
|