10 lines
165 B
C#
10 lines
165 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Server.Startup.Common.Migrations
|
|
{
|
|
public interface IVersionMigration
|
|
{
|
|
Task Run();
|
|
}
|
|
}
|