//
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
namespace MUnique.OpenMU.Persistence.EntityFramework;
///
/// The loading status of a .
///
internal enum LoadingStatus
{
///
/// The undefined state.
///
Undefined,
///
/// The data is not loaded yet.
///
Unloaded,
///
/// The data is loaded.
///
Loaded,
///
/// The data is loading at the moment.
///
Loading,
///
/// The loading of the data failed.
///
Failed,
}