Sonarr/NzbDrone.Core/Datastore/Migration/Framework/MigrationOptions.cs

10 lines
242 B
C#

using FluentMigrator;
namespace NzbDrone.Core.Datastore.Migration.Framework
{
public class MigrationOptions : IMigrationProcessorOptions
{
public bool PreviewOnly { get; set; }
public int Timeout { get; set; }
}
}