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

cambiando tipo de dato para create-date.dto

parent 7b6a7f12
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
import { ApiProperty } from '@nestjs/swagger';
import { Place } from '../entities/place.entity';

export class CreateDateDto {
  @ApiProperty()
@@ -7,5 +8,5 @@ export class CreateDateDto {
  @ApiProperty()
  endDate: Date;

  idPlace: number;
  idPlace: Place;
}