Se suben eventos a la BD, asociados a la discoteca del usuario

This commit is contained in:
2021-03-20 13:21:50 +01:00
parent f6756c25a8
commit 4b2d8cf7b6
8 changed files with 102 additions and 19 deletions

View File

@@ -1,2 +1,14 @@
import { Time } from "@angular/common";
export interface Eventoi {
discotecaID: number,
nombre: string,
localizacion: string,
fecha: Date,
hora: Time,
descripcion: string,
precio1: number,
precio2: number,
}