// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.Content.Import
{
///
/// The content item import request data container.
///
[HideInEditor]
public struct Request
{
///
/// The input item path (folder or file).
///
public string InputPath;
///
/// The output path (folder or file).
///
public string OutputPath;
///
/// Flag set to true for the assets handled by the engine internally.
///
public bool IsInBuilt;
///
/// Flag used to skip showing import settings dialog to used. Can be used for importing assets from code by plugins.
///
public bool SkipSettingsDialog;
///
/// The custom settings object.
///
public object Settings;
}
}