mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-06 15:46:22 -05:00
17 lines
364 B
TypeScript
17 lines
364 B
TypeScript
export interface FilePath {
|
|
id: number;
|
|
is_dir: boolean;
|
|
location_id: number;
|
|
materialized_path: string;
|
|
name: string;
|
|
extension: string | null;
|
|
file_id: number | null;
|
|
parent_id: number | null;
|
|
temp_cas_id: string | null;
|
|
has_local_thumbnail: boolean;
|
|
date_created: string;
|
|
date_modified: string;
|
|
date_indexed: string;
|
|
permissions: string | null;
|
|
}
|