Loading backend/src/place/dto/create-place.dto.ts +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'; Loading @@ -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[]; } Loading
backend/src/place/dto/create-place.dto.ts +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'; Loading @@ -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[]; }