matcher/src/modules/configuration/domain/dtos/set-configuration.request.ts

16 lines
240 B
TypeScript

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