NeahOpti/app/types/mail.ts
2025-04-22 12:49:37 +02:00

14 lines
227 B
TypeScript

export interface Mail {
id: string;
from: string;
subject: string;
body: string;
date: string;
read: boolean;
starred: boolean;
attachments?: {
filename: string;
size: number;
type: string;
}[];
}