Explorar el Código

feat(types): 新增主体类型文件

caipin hace 3 años
padre
commit
5939368fec
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      types/src/interface/subject.ts

+ 5 - 0
types/src/interface/subject.ts

@@ -0,0 +1,5 @@
+
+export interface ISubject {
+    ID: string;
+    institutionIDs: string[];
+  }