Initial commit
This commit is contained in:
11
app/types/emailSent.ts
Normal file
11
app/types/emailSent.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
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";
|
||||
Reference in New Issue
Block a user