2021-05-24 14:54:46 +02:00
|
|
|
export interface NewNotification {
|
|
|
|
title: string;
|
|
|
|
message: string;
|
2021-10-05 16:31:56 +02:00
|
|
|
url?: string;
|
2021-05-24 14:54:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface Notification extends NewNotification {
|
|
|
|
id: number;
|
2021-10-05 16:31:56 +02:00
|
|
|
}
|