Files
immich/server/src/domain/system-config/dto/system-config-reverse-geocoding.dto.ts
Jason Rasmussen a50f125dd1 refactor: api validators (boolean and date) (#7709)
* refactor: api validators (boolean and date)

* chore: open api

* revert: time bucket change
2024-03-07 22:59:02 -05:00

7 lines
145 B
TypeScript

import { ValidateBoolean } from '../../domain.util';
export class SystemConfigReverseGeocodingDto {
@ValidateBoolean()
enabled!: boolean;
}