12 lines
358 B
TypeScript
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[];
|
|
}
|
|
}
|