Files
fotospiel-app/clients/photobooth-uploader/PhotoboothUploader/Models/PhotoboothSettings.cs
2026-01-12 20:40:40 +01:00

15 lines
473 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; }
}