Initial commit to new repository
This commit is contained in:
16
.decompiledproj/AxCopilot/Models/ClipboardHistorySettings.cs
Normal file
16
.decompiledproj/AxCopilot/Models/ClipboardHistorySettings.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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<string> ExcludePatterns { get; set; } = new List<string> { "^\\d{4}[\\s\\-]?\\d{4}[\\s\\-]?\\d{4}[\\s\\-]?\\d{4}$", "^(?:\\d{1,3}\\.){3}\\d{1,3}$" };
|
||||
}
|
||||
Reference in New Issue
Block a user