mirror of
https://gitlab.com/mobicoop/v3/service/territory.git
synced 2026-03-08 06:05:35 +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;
|
|
}
|