aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Migrations/IVersionMigration.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-18 03:39:20 -0500
commitfa714425dd91fed2ca691cd45f73f7ea5a579dff (patch)
tree2c80df4c66a2eee15f59f3c3cc8b6228b7e51e69 /Emby.Server.Implementations/Migrations/IVersionMigration.cs
parent7a2cb6da5a14e8786adefbe3a58baa202c6f85e2 (diff)
begin to rework repositories
Diffstat (limited to 'Emby.Server.Implementations/Migrations/IVersionMigration.cs')
-rw-r--r--Emby.Server.Implementations/Migrations/IVersionMigration.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Migrations/IVersionMigration.cs b/Emby.Server.Implementations/Migrations/IVersionMigration.cs
new file mode 100644
index 000000000..7804912e3
--- /dev/null
+++ b/Emby.Server.Implementations/Migrations/IVersionMigration.cs
@@ -0,0 +1,9 @@
+using System.Threading.Tasks;
+
+namespace Emby.Server.Implementations.Migrations
+{
+ public interface IVersionMigration
+ {
+ Task Run();
+ }
+}