jellyfin/Emby.Server.Implementations/Migrations/IVersionMigration.cs

10 lines
158 B
C#
Raw Normal View History

2016-09-17 08:09:29 +02:00
using System.Threading.Tasks;
2016-11-18 09:39:20 +01:00
namespace Emby.Server.Implementations.Migrations
2014-11-11 04:41:55 +01:00
{
public interface IVersionMigration
{
2016-09-17 08:09:29 +02:00
Task Run();
2014-11-11 04:41:55 +01:00
}
}