import type { LocationEnum } from './location-enum';
export interface Storage {
    'id'?: number;
    'location'?: LocationEnum;
    'cloud_storage_id'?: number | null;
}
