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

8 lines
120 B
TypeScript

export type NotificationItem = {
id: number
title: string
message: string
isRead: boolean
createdAt: string
}