11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
export interface EmailSent {
|
|
id: string;
|
|
receiver: string;
|
|
subject: string;
|
|
content: string;
|
|
status: number;
|
|
create_time: string;
|
|
update_time: string;
|
|
}
|
|
|
|
export type EmailSentStatus = "pending" | "success" | "error"| "schedule";
|