10 lines
182 B
TypeScript
10 lines
182 B
TypeScript
import { IsString } from 'class-validator';
|
|
|
|
/**
|
|
* Defines a empty response object.
|
|
*/
|
|
export class ResponseEmpty {
|
|
@IsString()
|
|
response: string = "nothing here"
|
|
}
|