mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:54:52 -04:00
11 lines
228 B
TypeScript
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;
|
|
}
|