add moodules

This commit is contained in:
2026-04-17 23:42:24 +01:00
parent 532458ecfa
commit a7fbb2c466
54 changed files with 3074 additions and 74 deletions
@@ -0,0 +1,14 @@
import { Type } from 'class-transformer';
import { IsInt, IsOptional, IsUUID, Max, Min } from 'class-validator';
export class AttachImageDto {
@IsUUID()
imageId: string;
@IsOptional()
@Type(() => Number)
@IsInt()
@Min(0)
@Max(10_000)
sortOrder?: number;
}