14 lines
419 B
TypeScript
14 lines
419 B
TypeScript
import type Notification from "./Notification";
|
|
import type User from "../Notary/User";
|
|
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";
|
|
}
|
|
export default UserHasNotification;
|