IUserRecord

This commit is contained in:
2024-03-11 12:42:06 +00:00
parent c99f97323d
commit 5adf8db676
2 changed files with 21 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import type { ServerID, UserID } from "@/defs.js";
export interface IUserRecord {
_id: string;
userID: UserID;
serverID: ServerID;
logType: 'inheritPoint';
//게임 내 연도
year: number;
month: number;
text: string;
createdAt: Date;
}