NeahNew/types/mail.ts
2025-05-03 14:17:46 +02:00

14 lines
231 B
TypeScript

export interface Mail {
id: string;
from: string;
to: string;
subject: string;
body: string;
date: string;
read: boolean;
starred: boolean;
folder: string;
cc?: string[];
bcc?: string[];
flags?: string[];
}