2016-09-16 23:09:29 -07:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2016-11-18 01:39:20 -07:00
|
|
|
|
namespace Emby.Server.Implementations.Migrations
|
2014-11-10 20:41:55 -07:00
|
|
|
|
{
|
|
|
|
|
public interface IVersionMigration
|
|
|
|
|
{
|
2016-09-16 23:09:29 -07:00
|
|
|
|
Task Run();
|
2014-11-10 20:41:55 -07:00
|
|
|
|
}
|
|
|
|
|
}
|