13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
import { Notification } from "./Notification";
|
|
import { User } from "./User";
|
|
export declare namespace UserHasNotification {
|
|
class IUserHasNotification {
|
|
uuid: string;
|
|
user: User.IUser;
|
|
notification: Notification.INotification;
|
|
created_at: Date | null;
|
|
updated_at: Date | null;
|
|
}
|
|
type ENotificationStatus = "READ" | "UNREAD";
|
|
}
|