mirror of https://github.com/hykilpikonna/AquaDX
8 lines
185 B
C#
8 lines
185 B
C#
![]() |
namespace AquaMai.Config.Interfaces;
|
||
|
|
||
|
public interface IConfigMigrationManager
|
||
|
{
|
||
|
public IConfigView Migrate(IConfigView config);
|
||
|
public string GetVersion(IConfigView config);
|
||
|
}
|