2023-03-23 15:41:07 +01:00

12 lines
358 B
TypeScript

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