This commit is contained in:
2026-02-18 21:51:16 +09:00
commit d3dbaf397a
78 changed files with 17277 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import { IsOptional, IsString, MaxLength } from 'class-validator';
export class UpdateUserNameDto {
@IsString()
@MaxLength(120)
@IsOptional()
name?: string;
}