aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Migrations/IVersionMigration.cs
blob: 7804912e3ba6058bf57c27e8b9ae74dfd9099d93 (plain)
1
2
3
4
5
6
7
8
9
using System.Threading.Tasks;

namespace Emby.Server.Implementations.Migrations
{
    public interface IVersionMigration
    {
        Task Run();
    }
}