You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
647 B
26 lines
647 B
using System; |
|
using System.Text.Json; |
|
using System.Text.Json.Nodes; |
|
|
|
namespace StabilityMatrix.Avalonia.Models; |
|
|
|
public interface ILoadableState<T> : IJsonLoadableState |
|
{ |
|
new Type LoadableStateType => typeof(T); |
|
|
|
void LoadState(T state); |
|
|
|
new void LoadStateFromJsonObject(JsonObject state) |
|
{ |
|
state.Deserialize(LoadableStateType); |
|
} |
|
|
|
T SaveState(); |
|
|
|
new JsonObject SaveStateToJsonObject() |
|
{ |
|
var node = JsonSerializer.SerializeToNode(SaveState()); |
|
return node?.AsObject() ?? throw new |
|
InvalidOperationException("Failed to serialize state to JSON object."); |
|
} |
|
}
|
|
|