change whole backend and tables for gorm table references
simplify tables with table components close #31
This commit is contained in:
9
src/vueLib/models/responsible.ts
Normal file
9
src/vueLib/models/responsible.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Member } from './member';
|
||||
|
||||
export interface Responsible {
|
||||
id: number;
|
||||
memberId: number;
|
||||
member: Member;
|
||||
}
|
||||
|
||||
export type Responsibles = Responsible[];
|
||||
Reference in New Issue
Block a user