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

10 lines
147 B
C#
Raw Normal View History

2016-09-16 23:09:29 -07:00
using System.Threading.Tasks;
2016-11-10 23:43:42 -07:00
namespace Emby.Server.Core.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
}
}