using System.Text.Json.Serialization; namespace AxCopilot.Models; public class SnippetEntry { [JsonPropertyName("key")] public string Key { get; set; } = ""; [JsonPropertyName("name")] public string Name { get; set; } = ""; [JsonPropertyName("content")] public string Content { get; set; } = ""; }