reorganización con carpetas

This commit is contained in:
2021-03-18 18:56:19 +01:00
parent 660f19932c
commit f6756c25a8
10 changed files with 13 additions and 11 deletions

View File

@@ -0,0 +1,6 @@
export interface DiscotecaI {
discotecaId: number,
nombre: string,
telefono: number,
localizacion: string
}

View File

@@ -0,0 +1,2 @@
export interface Eventoi {
}

View File

@@ -0,0 +1,4 @@
export interface UserLogin {
loginUser: string;
loginPassword: string;
}

View File

@@ -0,0 +1,6 @@
export interface User {
id: number;
discotecaID: number;
userType: number;
username: string;
}