Files
SIRH/frontend/services/dto/notification.ts

10 lines
160 B
TypeScript

export type NotificationItem = {
id: number
actorName: string
message: string
category: string
target: string
isRead: boolean
createdAt: string
}