NeahStable/app/types/mail.ts
2026-01-09 21:06:52 +01: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;
}[];
}