WorldHistory

This commit is contained in:
2024-03-11 12:35:51 +00:00
parent 1537e8a137
commit cf3a208591
+14
View File
@@ -0,0 +1,14 @@
import type { NationID } from "@/defs.js";
//국제 정세
export interface IWorldHistory {
//MongoDB ID
_id: string;
//nationID -> year -> month
year: number;
month: number;
nationID?: NationID;
text: string;
}