export interface Notification {
  response_code: string;
  message: string;
  detail: NotificationDetail[];
  status: string;
}

export interface NotificationDetail {
  not_id: number;
  title: string;
  message: string;
  from_user: number;
  to_user: number;
  post_id: string;
  type: string;
  date: string;
  is_view: string;
  not_type: string;
  post_user_id: string;
  created_at: string;
  updated_at: string;
  first_name: string;
  username: string;
  profile_pic: string;
  post_type?: string;
  post_image?: PostImage[];
}

export interface PostImage {
  post_image_id: number;
  url: string;
  type: string;
  post_video_thumbnail: string;
}

export interface UnreadCount {
  response_code : string;
  message: string;
  unread_message: string;
  unread_notification:string;
  status:string
}
