mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
import { toBoolean } from 'apps/immich/src/utils/transform.util';
|
|
import { Transform } from 'class-transformer';
|
|
import { IsBoolean, IsOptional } from 'class-validator';
|
|
|
|
export class MapMarkerDto {
|
|
@IsOptional()
|
|
@IsBoolean()
|
|
@Transform(toBoolean)
|
|
isFavorite?: boolean;
|
|
}
|