Files
nestjs-admin/server/src/system/config/dto/create-config.dto.ts
2024-10-26 12:10:13 +08:00

15 lines
230 B
TypeScript

import { IsNotEmpty, IsOptional, IsString } from 'class-validator';
export class CreateConfigDto {
@IsNotEmpty()
@IsString()
key: string;
@IsNotEmpty()
@IsString()
value: string;
@IsOptional()
remark: string;
}