src/crypto/key/dto/key-chain-id-response.dto.ts
Properties |
| id |
Type : string
|
Decorators :
@ApiProperty({description: 'The created or imported key chain ID'})
|
import { ApiProperty } from "@nestjs/swagger";
export class KeyChainIdResponseDto {
@ApiProperty({ description: "The created or imported key chain ID" })
id!: string;
}