Commit 3a7e5f4b authored by Diego Iván's avatar Diego Iván
Browse files

agregando idTown y idPlace a dto

parent a86138a3
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
import { Available } from 'src/pointOfInterest/enum/available.enum';
import { Town } from 'src/town/entities/town.entity';
import { Place } from '../entities/place.entity';

export class GetPlaceDto {
  idTown: number;
  idPlace: Place;
  available: Available;
  name: string;
  description: string;
  imageName: string;
  idTown: Town;
  coords: string;
  openAt: number;
  closeAt: number;