Files
flame/client/src/interfaces/Notification.ts
2021-10-05 16:31:56 +02:00

10 lines
162 B
TypeScript

export interface NewNotification {
title: string;
message: string;
url?: string;
}
export interface Notification extends NewNotification {
id: number;
}