Protocols/PtlSend.ts

10 lines
157 B
TypeScript
Raw Normal View History

2023-08-31 08:59:11 +00:00
// This is a demo code file
// Feel free to delete it
export interface ReqSend {
content: string
}
export interface ResSend {
time: Date
}