14 lines
297 B
TypeScript
14 lines
297 B
TypeScript
export type NotificationType = 'ticket_created' | 'ticket_status_changed'
|
|
|
|
export type Notification = {
|
|
'@id'?: string
|
|
id: number
|
|
user: string
|
|
type: NotificationType
|
|
title: string
|
|
message: string
|
|
relatedTicket: string | null
|
|
isRead: boolean
|
|
createdAt: string
|
|
}
|