using System.Text.Json.Serialization; namespace StabilityMatrix.Avalonia.Models.Inference; /// /// Model for view states of inference tabs /// [JsonSerializable(typeof(ViewState))] public class ViewState { public string? DockLayout { get; set; } }