blob: efcadbf0069aa9402505bab4e8877046a2feb081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections.ObjectModel;
namespace Jellyfin.Server.Migrations.Stages;
/// <summary>
/// Defines a Stage that can be Invoked and Handled at different times from the code.
/// </summary>
internal class MigrationStage : Collection<CodeMigration>
{
public MigrationStage(JellyfinMigrationStageTypes stage)
{
Stage = stage;
}
public JellyfinMigrationStageTypes Stage { get; }
}
|