mirror of
https://github.com/hykilpikonna/AquaDX.git
synced 2026-08-09 04:29:03 -05:00
11 lines
235 B
C#
11 lines
235 B
C#
using AquaMai.Config.Interfaces;
|
|
|
|
namespace AquaMai.Config.Migration;
|
|
|
|
public interface IConfigMigration
|
|
{
|
|
public string FromVersion { get; }
|
|
public string ToVersion { get; }
|
|
public ConfigView Migrate(ConfigView config);
|
|
}
|