Files
lcbp3/frontend/types/notification.ts
T
admin c5c3ed9016
Build and Deploy / deploy (push) Successful in 9m24s
260316:1117 20260316:1100 Refactor UUID
2026-03-16 11:17:15 +07:00

16 lines
352 B
TypeScript

export interface Notification {
uuid: string;
notificationId?: number; // Excluded from API responses (ADR-019)
title: string;
message: string;
type: "INFO" | "SUCCESS" | "WARNING" | "ERROR";
isRead: boolean;
createdAt: string;
link?: string;
}
export interface NotificationResponse {
items: Notification[];
unreadCount: number;
}