11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import {UUID} from '..';
|
|
|
|
export class GroupNoticeEvent
|
|
{
|
|
groupID: UUID;
|
|
from: UUID;
|
|
fromName: string;
|
|
subject: string;
|
|
message: string;
|
|
}
|