import IUserHasNotification from "./IUserHasNotification"; export default class INotification { uuid: string; message: string; redirection_url: string; created_at: Date | null; updated_at: Date | null; user_has_notifications?: IUserHasNotification[]; }