mirror of
https://github.com/immich-app/immich.git
synced 2025-11-21 22:25:59 -05:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { IsString } from 'class-validator';
|
|
import { ValidateBoolean } from 'src/validation';
|
|
|
|
export class SystemConfigMapDto {
|
|
@ValidateBoolean()
|
|
enabled!: boolean;
|
|
|
|
@IsString()
|
|
lightStyle!: string;
|
|
|
|
@IsString()
|
|
darkStyle!: string;
|
|
}
|