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