immich/server/src/entities/stack.entity.ts
2025-04-10 10:53:21 -04:00

11 lines
228 B
TypeScript

import { AssetEntity } from 'src/entities/asset.entity';
export class StackEntity {
id!: string;
ownerId!: string;
assets!: AssetEntity[];
primaryAsset!: AssetEntity;
primaryAssetId!: string;
assetCount?: number;
}