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 -1
View File
@@ -1,3 +1,10 @@
export class General {
import type { GeneralID, GeneralName } from "./defs.js";
export class General {
constructor(
public readonly id: GeneralID,
public name: GeneralName,
){
}
}