TSRPC_Test/test/proto/MsgChat.ts
2022-04-29 15:25:10 +08:00

6 lines
109 B
TypeScript

export interface MsgChat {
channel: number,
userName: string,
content: string,
time: number
}