refactor(models): Moved models and Repositories to database
This commit is contained in:
parent
d5f5fe5f1a
commit
9155f630d9
18 changed files with 42 additions and 42 deletions
8
source/Database/Models/GroupConfigurationModel.ts
Normal file
8
source/Database/Models/GroupConfigurationModel.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import {Model} from "./Model";
|
||||
import {GroupModel} from "./GroupModel";
|
||||
|
||||
export interface GroupConfigurationModel extends Model {
|
||||
group: GroupModel;
|
||||
key: string;
|
||||
value: string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue