import type { ActivityReason } from "../../types/ActivityReason"; import type { User } from "../User"; export interface ActivityNotification { readonly id: number; readonly alreadyRead: boolean; readonly reason: ActivityReason; readonly user: User; readonly resourceAlreadyRead: boolean; }