forked from Cookies_Github_mirror/AquaDX
9 lines
226 B
C#
9 lines
226 B
C#
namespace AquaMai.Config.Interfaces;
|
|
|
|
public interface IConfigMigrationManager
|
|
{
|
|
public IConfigView Migrate(IConfigView config);
|
|
public string GetVersion(IConfigView config);
|
|
public string LatestVersion { get; }
|
|
}
|