10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
export type NotificationItem = {
|
|
id: number
|
|
actorName: string
|
|
message: string
|
|
category: string
|
|
target: string
|
|
isRead: boolean
|
|
createdAt: string
|
|
}
|