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

10 lines
147 B
C#
Raw Normal View History

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