8 lines
120 B
TypeScript
8 lines
120 B
TypeScript
export type NotificationItem = {
|
|
id: number
|
|
title: string
|
|
message: string
|
|
isRead: boolean
|
|
createdAt: string
|
|
}
|