ResourceController 란 것이 있을 것

This commit is contained in:
2023-09-24 04:06:59 +00:00
parent 4bc5407bf2
commit 905b401aab
5 changed files with 82 additions and 2 deletions
+8
View File
@@ -0,0 +1,8 @@
import type { CityID } from "./defs.js";
export class City{
constructor(
public readonly id: CityID
){
}
}