@lxdhub/api
Version:
Display, search and copy LXD-images using a web interface.
29 lines (26 loc) • 593 B
text/typescript
import { Type } from 'class-transformer';
import { IsDefined, IsArray, IsString, ValidateNested, ArrayMinSize } from 'class-validator';
import { ApiModelProperty } from '@nestjs/swagger';
/**
* Data object for the image import
* parameter parsing
*/
export class ImportImageDto {
/**
* The aliases
*/
aliases: string[];
/**
* The name of the remote
*/
remote: string;
}