using MediaBrowser.Common.Configuration; namespace Jellyfin.Server.Migrations { /// /// A configuration that lists all the migration routines that were applied. /// public class MigrationsListStore : ConfigurationStore { /// /// The name of the configuration in the storage. /// public static readonly string StoreKey = "migrations"; /// /// Initializes a new instance of the class. /// public MigrationsListStore() { ConfigurationType = typeof(MigrationOptions); Key = StoreKey; } } }