Add filters, throttling, and connection test

This commit is contained in:
Codex Agent
2026-01-13 11:15:57 +01:00
parent 8944710e22
commit 0f9fc76711
4 changed files with 226 additions and 0 deletions

View File

@@ -12,11 +12,14 @@ public sealed class PhotoboothSettings
public string? Password { get; set; }
public string? ResponseFormat { get; set; }
public string? WatchFolder { get; set; }
public string? IncludePatterns { get; set; }
public string? ExcludePatterns { get; set; }
public List<string> PendingUploads { get; set; } = new();
public Dictionary<string, string> UploadedFiles { get; set; } = new(StringComparer.OrdinalIgnoreCase);
public string? LastError { get; set; }
public string? LastErrorAt { get; set; }
public int MaxConcurrentUploads { get; set; } = 2;
public int UploadDelayMs { get; set; } = 500;
public double WindowWidth { get; set; }
public double WindowHeight { get; set; }
}