13 lines
223 B
TypeScript
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;
|
|
};
|
|
}
|