first commit
This commit is contained in:
3
src/vueLib/models/Response.ts
Normal file
3
src/vueLib/models/Response.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export interface Response {
|
||||
message: string;
|
||||
}
|
||||
3
src/vueLib/models/logo.ts
Normal file
3
src/vueLib/models/logo.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import { ref } from 'vue';
|
||||
|
||||
export const Logo = ref('');
|
||||
18
src/vueLib/models/member.ts
Normal file
18
src/vueLib/models/member.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
export interface Member {
|
||||
id: number;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
birthday: string;
|
||||
age: string;
|
||||
address: string;
|
||||
town: string;
|
||||
zip: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
group: string;
|
||||
responsiblePerson: string;
|
||||
firstVisit: string;
|
||||
lastVisit: string;
|
||||
}
|
||||
|
||||
export type Members = Member[];
|
||||
12
src/vueLib/models/metaData.ts
Normal file
12
src/vueLib/models/metaData.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export interface MetaData {
|
||||
rowIndex: number;
|
||||
seperator: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
birthday: string;
|
||||
address: string;
|
||||
town: string;
|
||||
zip: string;
|
||||
phone: string;
|
||||
email: string;
|
||||
}
|
||||
6
src/vueLib/models/settings.ts
Normal file
6
src/vueLib/models/settings.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export type Settings = {
|
||||
icon: string;
|
||||
databaseName: string;
|
||||
primaryColor: string;
|
||||
secondaryColor: string;
|
||||
};
|
||||
8
src/vueLib/models/users.ts
Normal file
8
src/vueLib/models/users.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export interface User {
|
||||
id: number;
|
||||
name: string;
|
||||
role: string;
|
||||
expires: string;
|
||||
}
|
||||
|
||||
export type Users = User[];
|
||||
Reference in New Issue
Block a user