12 lines
342 B
C#
12 lines
342 B
C#
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; }
|
|
}
|