mirror of
https://github.com/immich-app/immich.git
synced 2025-01-25 05:02:46 +01:00
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
|
import { ApiProperty } from '@nestjs/swagger';
|
||
|
import { IsEnum } from 'class-validator';
|
||
|
|
||
|
export enum MapTheme {
|
||
|
LIGHT = 'light',
|
||
|
DARK = 'dark',
|
||
|
}
|
||
|
|
||
|
export class MapThemeDto {
|
||
|
@IsEnum(MapTheme)
|
||
|
@ApiProperty({ enum: MapTheme, enumName: 'MapTheme' })
|
||
|
theme!: MapTheme;
|
||
|
}
|