2016-09-17 02:09:29 -04:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2016-11-11 01:43:42 -05:00
|
|
|
|
namespace Emby.Server.Core.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
|
|
|
|
}
|
|
|
|
|
|
}
|