Listory/src/auth/dto/create-api-token-request.dto.ts

10 lines
236 B
TypeScript
Raw Normal View History

import { ApiProperty } from "@nestjs/swagger";
export class CreateApiTokenRequestDto {
@ApiProperty({
description: "Opaque text field to identify the API token",
example: "My super duper token",
})
description: string;
}