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

actualizando docs para campos start y end date

parent 339b6569
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,9 +28,9 @@ export class CreatePlaceDateTradDto {
  @ApiProperty({ maximum: 24, minimum: 0 })
  closeAt: number;

  @ApiProperty({ default: new Date() })
  @ApiProperty({ nullable: true, required: false, description: 'Only required if available is CUSTOM' })
  startDate: Date;

  @ApiProperty({ default: new Date() })
  @ApiProperty({ nullable: true, required: false, description: 'Only required if available is CUSTOM' })
  endDate: Date;
}