mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-07 16:16:22 -05:00
25 lines
606 B
TypeScript
25 lines
606 B
TypeScript
import type { EncryptionAlgorithm } from './EncryptionAlgorithm';
|
|
import type { FileKind } from './FileKind';
|
|
import type { FilePath } from './FilePath';
|
|
|
|
export interface File {
|
|
id: number;
|
|
cas_id: string;
|
|
integrity_checksum: string | null;
|
|
size_in_bytes: string;
|
|
kind: FileKind;
|
|
hidden: boolean;
|
|
favorite: boolean;
|
|
important: boolean;
|
|
has_thumbnail: boolean;
|
|
has_thumbstrip: boolean;
|
|
has_video_preview: boolean;
|
|
encryption: EncryptionAlgorithm;
|
|
ipfs_id: string | null;
|
|
comment: string | null;
|
|
date_created: string;
|
|
date_modified: string;
|
|
date_indexed: string;
|
|
paths: Array<FilePath>;
|
|
}
|