mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-15 04:11:38 +00:00
10 lines
163 B
C#
10 lines
163 B
C#
using Oqtane.Models;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public interface IUpgradeManager
|
|
{
|
|
void Upgrade(Tenant tenant, string version);
|
|
}
|
|
}
|