import { IsNotEmpty } from "class-validator";

export class MotifDto {
    @IsNotEmpty()
    readonly libelle
}