mirror of
https://gitlab.com/mobicoop/v3/service/auth.git
synced 2026-09-18 13:50:35 +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;
|
|
}
|