using System; namespace StabilityMatrix.Avalonia.Models.Inference; /// /// Event for view models requesting to load their view state from a provided state /// public class LoadViewStateEventArgs : EventArgs { public ViewState? State { get; init; } }