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

agregando categories[ ] a CreatePlaceDto

parent 62c90166
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
import { Category } from 'src/category/entities/category.entity';
import { Available } from 'src/pointOfInterest/enum/available.enum';
import { Town } from 'src/town/entities/town.entity';

@@ -5,9 +6,10 @@ export class CreatePlaceDto {
  available: Available;
  name: string;
  imageName: string;
  idTown: Town;
  town: Town;
  latitude: number;
  longitude: number;
  openAt: number;
  closeAt: number;
  categories: Category[];
}