10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
|
|
import { ApiProperty } from '@nestjs/swagger';
|
||
|
|
|
||
|
|
export class PrintResultDto {
|
||
|
|
@ApiProperty({ example: true })
|
||
|
|
success: boolean;
|
||
|
|
|
||
|
|
@ApiProperty({ example: 'Print successful!' })
|
||
|
|
message: string;
|
||
|
|
}
|