mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 21:36:41 +02:00
- Move finance, mail, moodlit to apps-archived for later development - Rename games/voxel-lava to games/voxelava 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
394 B
TypeScript
24 lines
394 B
TypeScript
import { IsString, IsOptional, IsNumber, MaxLength, Min, Max } from 'class-validator';
|
|
|
|
export class UpdateSettingsDto {
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(3)
|
|
defaultCurrency?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(10)
|
|
locale?: string;
|
|
|
|
@IsOptional()
|
|
@IsString()
|
|
@MaxLength(20)
|
|
dateFormat?: string;
|
|
|
|
@IsOptional()
|
|
@IsNumber()
|
|
@Min(0)
|
|
@Max(6)
|
|
weekStartsOn?: number;
|
|
}
|