mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-09-11 10:27:04 +08:00
4 lines
107 B
TypeScript
4 lines
107 B
TypeScript
export class EmailMessage {
|
|
constructor(public from: string, public to: string, public raw: string) {}
|
|
}
|