1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 11:39:36 +02:00
flame/client/src/interfaces/Notification.ts
2021-10-05 16:31:56 +02:00

9 lines
162 B
TypeScript

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