13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
import type UserHasNotification from "./UserHasNotification";
|
|
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[];
|
|
}
|
|
}
|
|
export default Notification;
|