using System.Text.Json.Serialization; namespace AxCopilot.Models; public class PluginEntry { [JsonPropertyName("path")] public string Path { get; set; } = ""; [JsonPropertyName("enabled")] public bool Enabled { get; set; } = true; }