28 lines
539 B
TypeScript
28 lines
539 B
TypeScript
export interface NotificationItem {
|
|
id: string;
|
|
isread: string;
|
|
is_hide: string;
|
|
isread_inline: string;
|
|
date: string;
|
|
description: string;
|
|
fromuserid: string;
|
|
fromclientid: string;
|
|
from_fullname: string;
|
|
touserid: string;
|
|
fromcompany: string | null;
|
|
link: string;
|
|
additional_data: string;
|
|
profile_image: string;
|
|
full_date: string;
|
|
}
|
|
|
|
export interface MarkNotificationReadResponse {
|
|
status: boolean;
|
|
message: string;
|
|
}
|
|
|
|
export interface ClearNotificationsResponse {
|
|
status: boolean;
|
|
message: string;
|
|
}
|