13 lines
335 B
TypeScript
13 lines
335 B
TypeScript
// login-response.dto.ts
|
|
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class LoginResponseDto {
|
|
@ApiProperty() id: number;
|
|
@ApiProperty() sellerId: number;
|
|
@ApiProperty() name: string;
|
|
@ApiProperty() username: string;
|
|
@ApiProperty() storeId: string;
|
|
@ApiProperty() email: string;
|
|
@ApiProperty() token: string;
|
|
}
|