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

agregando dto para la respuesta de estados

parent 8331bc14
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
import { ApiProperty } from '@nestjs/swagger';

export class StateResponseDto {
  @ApiProperty()
  stateId: number;
  @ApiProperty()
  name: string;
  @ApiProperty()
  imageURL: string;
}