mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-03-13 18:35:50 +00:00
16 lines
240 B
TypeScript
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;
|
|
}
|