mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-06 14:23:30 -04:00
11 lines
238 B
TypeScript
11 lines
238 B
TypeScript
export interface LocationResource {
|
|
id: number;
|
|
name: string | null;
|
|
path: string | null;
|
|
total_capacity: number | null;
|
|
available_capacity: number | null;
|
|
is_removable: boolean | null;
|
|
is_online: boolean;
|
|
date_created: string;
|
|
}
|