namespace Jellyfin.Server.Migrations
{
///
/// Configuration part that holds all migrations that were applied.
///
public class MigrationOptions
{
///
/// Initializes a new instance of the class.
///
public MigrationOptions()
{
Applied = System.Array.Empty();
}
#pragma warning disable CA1819 // Properties should not return arrays
///
/// Gets or sets he list of applied migration routine names.
///
public string[] Applied { get; set; }
#pragma warning restore CA1819 // Properties should not return arrays
}
}