diff --git a/src/users/dtos/update.user.dto.ts b/src/users/dtos/update.user.dto.ts index 1841e87..8364f9a 100644 --- a/src/users/dtos/update.user.dto.ts +++ b/src/users/dtos/update.user.dto.ts @@ -27,6 +27,19 @@ export class UpdateRegionDataDto { Object.assign(this, dto); } } +export class UpdateTimezoneDataDto { + @ApiProperty({ + description: 'timezoneUuid', + required: true, + }) + @IsString() + @IsNotEmpty() + public timezoneUuid: string; + + constructor(dto: Partial) { + Object.assign(this, dto); + } +} export class UpdateNameDto { @ApiProperty({ description: 'firstName',