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