mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-06 13:27:27 +08:00
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; }
|
|
}
|