12 lines
207 B
C#
12 lines
207 B
C#
namespace FlowScope.Save
|
|
{
|
|
public interface ISaveMigration
|
|
{
|
|
string Key { get; }
|
|
int FromVersion { get; }
|
|
int ToVersion { get; }
|
|
|
|
string Migrate(string json);
|
|
}
|
|
}
|