using System;
using System.Collections.Generic;
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 = new List<(Guid Id, string Name)>();
}
// .Net xml serializer can't handle interfaces
#pragma warning disable CA1002 // Do not expose generic lists
///
/// Gets the list of applied migration routine names.
///
public List<(Guid Id, string Name)> Applied { get; }
#pragma warning restore CA1002
}
}