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

10 lines
242 B
C#
Raw Normal View History

2013-03-25 06:13:53 +00:00
using FluentMigrator;
namespace NzbDrone.Core.Datastore.Migration.Framework
{
public class MigrationOptions : IMigrationProcessorOptions
{
public bool PreviewOnly { get; set; }
public int Timeout { get; set; }
}
}