mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-25 14:47:39 +00:00
18 lines
441 B
TypeScript
18 lines
441 B
TypeScript
import { AssetFaceEntity } from 'src/entities/asset-face.entity';
|
|
|
|
export class PersonEntity {
|
|
id!: string;
|
|
createdAt!: Date;
|
|
updatedAt!: Date;
|
|
updateId?: string;
|
|
ownerId!: string;
|
|
name!: string;
|
|
birthDate!: Date | string | null;
|
|
thumbnailPath!: string;
|
|
faceAssetId!: string | null;
|
|
faceAsset!: AssetFaceEntity | null;
|
|
faces!: AssetFaceEntity[];
|
|
isHidden!: boolean;
|
|
isFavorite!: boolean;
|
|
color?: string | null;
|
|
}
|