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(); } /// /// Gets the list of applied migration routine names. /// public List Applied { get; } } }