namespace FlowScope.Save { public interface ISaveMigration { string Key { get; } int FromVersion { get; } int ToVersion { get; } string Migrate(string json); } }