NeahNew/app/types/announcement.ts
2025-05-04 21:31:09 +02:00

13 lines
223 B
TypeScript

export interface Announcement {
id: string;
title: string;
content: string;
createdAt: string;
updatedAt: string;
authorId: string;
targetRoles: string[];
author: {
id: string;
email: string;
};
}