mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-08 20:23:26 -05: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; }
|
|
}
|