Files
lcbp3/frontend/types/notification.ts
admin c8a0f281ef
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled
251210:1709 Frontend: reeactor organization and run build
2025-12-10 17:09:11 +07:00

15 lines
294 B
TypeScript

export interface Notification {
notificationId: number;
title: string;
message: string;
type: "INFO" | "SUCCESS" | "WARNING" | "ERROR";
isRead: boolean;
createdAt: string;
link?: string;
}
export interface NotificationResponse {
items: Notification[];
unreadCount: number;
}