reorganización con carpetas
This commit is contained in:
6
src/app/interfaces/discoteca-i.ts
Normal file
6
src/app/interfaces/discoteca-i.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface DiscotecaI {
|
||||
discotecaId: number,
|
||||
nombre: string,
|
||||
telefono: number,
|
||||
localizacion: string
|
||||
}
|
||||
2
src/app/interfaces/eventoi.ts
Normal file
2
src/app/interfaces/eventoi.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export interface Eventoi {
|
||||
}
|
||||
4
src/app/interfaces/user-login.ts
Normal file
4
src/app/interfaces/user-login.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface UserLogin {
|
||||
loginUser: string;
|
||||
loginPassword: string;
|
||||
}
|
||||
6
src/app/interfaces/user.ts
Normal file
6
src/app/interfaces/user.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface User {
|
||||
id: number;
|
||||
discotecaID: number;
|
||||
userType: number;
|
||||
username: string;
|
||||
}
|
||||
Reference in New Issue
Block a user