chore: new password

This commit is contained in:
mahyargdz
2025-07-20 10:35:55 +03:30
parent 5322b6b6c4
commit 495646e770
6 changed files with 53 additions and 23 deletions
+7
View File
@@ -17,3 +17,10 @@ export class ParamNumberIdDto {
@ApiProperty({ description: "Id of the entity", example: "20" })
id: string;
}
export class SettingParamDto {
@IsNotEmpty({ message: CommonMessage.ID_REQUIRED })
@IsUUID("all", { message: CommonMessage.ID_SHOULD_BE_UUID })
@ApiProperty({ description: "Id of the entity", example: "8b1e8b1e-8b1e-8b1e-8b1e-8b1e8b1e8b1e" })
id: string;
}