Files
immich/server/src/api-v1/device-info/dto/create-device-info.dto.ts
2022-02-03 10:06:44 -06:00

14 lines
278 B
TypeScript

import { IsNotEmpty, IsOptional } from 'class-validator';
import { DeviceType } from '../entities/device-info.entity';
export class CreateDeviceInfoDto {
@IsNotEmpty()
deviceId: string;
@IsNotEmpty()
deviceType: DeviceType;
@IsOptional()
isAutoBackup: boolean;
}