using System.Collections.Generic; using System.Text.Json.Serialization; namespace AxCopilot.Models; public class ClipboardHistorySettings { [JsonPropertyName("enabled")] public bool Enabled { get; set; } = true; [JsonPropertyName("maxItems")] public int MaxItems { get; set; } = 50; [JsonPropertyName("excludePatterns")] public List ExcludePatterns { get; set; } = new List { "^\\d{4}[\\s\\-]?\\d{4}[\\s\\-]?\\d{4}[\\s\\-]?\\d{4}$", "^(?:\\d{1,3}\\.){3}\\d{1,3}$" }; }