Files
spacedrive/core/bindings/LocationResource.ts
2022-05-22 23:24:43 -05:00

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;
}