Files
fotospiel-app/clients/photobooth-uploader/PhotoboothUploader/Models/PhotoboothSettings.cs
Codex Agent be722f6e37
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Remember uploader window size
2026-01-12 21:03:27 +01:00

18 lines
617 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;
public double WindowWidth { get; set; }
public double WindowHeight { get; set; }
}