namespace OpenTap
{
///
/// The status of the loading operation for TypeData and AssemblyData.
///
internal enum LoadStatus
{
/// Loading has not been done yet.
NotLoaded = 1,
/// This has been loaded.
Loaded = 2,
/// It failed to load.
FailedToLoad = 3
}
}