Add photobooth connect codes and uploader pipeline

This commit is contained in:
Codex Agent
2026-01-12 17:02:50 +01:00
parent 6e5e3f5ecc
commit 2b1b9e30a3
55 changed files with 2973 additions and 190 deletions

View File

@@ -0,0 +1,11 @@
namespace PhotoboothUploader.Models;
public sealed class PhotoboothSettings
{
public string? BaseUrl { get; set; }
public string? UploadUrl { get; set; }
public string? Username { get; set; }
public string? Password { get; set; }
public string? ResponseFormat { get; set; }
public string? WatchFolder { get; set; }
}