refactor: adapt models to the new api
This commit is contained in:
12
src/shared/responses/v1/configuration/databaseResponse.ts
Normal file
12
src/shared/responses/v1/configuration/databaseResponse.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import {DatabaseType} from "@model/databaseType";
|
||||
|
||||
export interface DatabaseResponse {
|
||||
type: DatabaseType;
|
||||
server?: string;
|
||||
port: number;
|
||||
database?: string;
|
||||
user?: string;
|
||||
ssl: boolean;
|
||||
password?: string;
|
||||
pathToDatabase?: string;
|
||||
}
|
Reference in New Issue
Block a user