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