Files
immich/server/src/entities/stack.entity.ts
T
2025-03-28 10:40:09 -04:00

13 lines
305 B
TypeScript

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