immich/server/apps/immich/src/api-v1/asset/dto/get-all-asset-response.dto.ts

9 lines
249 B
TypeScript

import { AssetEntity } from '@app/database/entities/asset.entity';
// TODO: this doesn't seem to be used
export class GetAllAssetReponseDto {
data!: Array<{ date: string; assets: Array<AssetEntity> }>;
count!: number;
nextPageKey!: string;
}