using MediaBrowser.Model.Configuration;
namespace Jellyfin.Server.Configuration;
///
/// Defines types for usage with the .
///
public enum StartupMode
{
///
/// Default startup mode, runs the jellyfin server in normal operation.
///
MediaServer = 0,
///
/// Attempts to Migrate the system only then shuts down.
///
MigrateSystem = 1,
///
/// Runs the Database seed function regardless of state.
///
SeedSystem = 2
}