using System.Collections.ObjectModel;
namespace Jellyfin.Server.Migrations.Stages;
///
/// Defines a Stage that can be Invoked and Handled at different times from the code.
///
internal class MigrationStage : Collection
{
public MigrationStage(JellyfinMigrationStageTypes stage)
{
Stage = stage;
}
public JellyfinMigrationStageTypes Stage { get; }
}