export interface Notification {
  id: string;
  time: number;
  msg?: string;
  status: string;
}
