diff --git a/StabilityMatrix.Avalonia/Models/ILoadableState.cs b/StabilityMatrix.Avalonia/Models/ILoadableState.cs deleted file mode 100644 index cce10463..00000000 --- a/StabilityMatrix.Avalonia/Models/ILoadableState.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System; -using System.Text.Json; -using System.Text.Json.Nodes; - -namespace StabilityMatrix.Avalonia.Models; - -public interface ILoadableState : 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."); - } -}