forked from Shared/esg
13 lines
288 B
TypeScript
13 lines
288 B
TypeScript
import { ApiPropertyOptional } from '@nestjs/swagger';
|
|
|
|
export class SayahResponseDto {
|
|
@ApiPropertyOptional()
|
|
ReturnValue?: boolean;
|
|
|
|
@ApiPropertyOptional()
|
|
HasError?: boolean;
|
|
|
|
@ApiPropertyOptional({ type: Object, nullable: true })
|
|
Errors?: Record<string, string> | null;
|
|
}
|