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