Protocols/PtlSend.ts
2023-08-31 16:59:11 +08:00

10 lines
157 B
TypeScript

// This is a demo code file
// Feel free to delete it
export interface ReqSend {
content: string
}
export interface ResSend {
time: Date
}