1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-21 12:29:36 +02:00
flame/client/src/interfaces/Notification.ts

8 lines
145 B
TypeScript
Raw Normal View History

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