Notifications (#1)

This commit is contained in:
2025-05-09 12:46:53 +02:00
committed by GitHub
parent 9423b4804a
commit 5d1c0bc2ba
12 changed files with 73 additions and 122 deletions

View File

@@ -1,8 +1,8 @@
import { ObjectId, Schema, model } from "mongoose"
import { Schema, Types, model } from "mongoose"
interface IKey {
room: string;
whom: ObjectId;
whom: Types.ObjectId;
borrow: Date;
tb?: Date;
}