mirror of
https://gitlab.com/mobicoop/v3/service/auth.git
synced 2026-03-22 13:15:49 +00:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
import { AutoMap } from '@automapper/classes';
|
|
import { IsNotEmpty, IsString } from 'class-validator';
|
|
|
|
export class DeleteAuthenticationRequest {
|
|
@IsString()
|
|
@IsNotEmpty()
|
|
@AutoMap()
|
|
uuid: string;
|
|
}
|