/**
 * Interface of information object about a asset pending creation
 *
 * @export
 * @interface IPendingAsset
 */
export interface IPendingAsset {
  id?: number
  filename: string
  asset_folder_id?: number | null
}
