begin to rework repositories

This commit is contained in:
Luke Pulverenti
2016-11-18 03:39:20 -05:00
parent 7a2cb6da5a
commit fa714425dd
26 changed files with 937 additions and 924 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace Emby.Server.Implementations.Migrations
{
public interface IVersionMigration
{
Task Run();
}
}