Files
fotospiel-app/clients/photobooth-uploader/PhotoboothUploader/Models/PhotoboothSettings.cs
Codex Agent 898ac9ff0e
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Add uploader advanced settings and live status
2026-01-12 20:50:39 +01:00

16 lines
528 B
C#

namespace PhotoboothUploader.Models;
public sealed class PhotoboothSettings
{
public string? BaseUrl { get; set; }
public string? EventName { 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; }
public string? LastError { get; set; }
public string? LastErrorAt { get; set; }
public int MaxConcurrentUploads { get; set; } = 2;
}