mirror of
https://gitlab.com/mobicoop/v3/service/territory.git
synced 2026-01-07 02:22:38 +00:00
12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class DeleteConfigurationRequest {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
domain: string;
|
|
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
key: string;
|
|
}
|