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

8 lines
217 B
C#
Raw Normal View History

2013-07-05 03:56:27 +00:00
namespace NzbDrone.Core.Datastore.Migration.Framework
{
public class MigrationContext
{
public MigrationType MigrationType { get; set; }
public ISQLiteAlter SQLiteAlter { get; set; }
}
}