13 lines
293 B
C#
13 lines
293 B
C#
using Newtonsoft.Json;
|
|
using Pilz.Cryptography;
|
|
|
|
namespace Pilz.Updating.Administration;
|
|
|
|
public class ProxyConfiguration
|
|
{
|
|
public bool UseProxyAuth { get; set; }
|
|
public string Username { get; set; }
|
|
[JsonProperty("PasswordV3")]
|
|
public SecureString Password { get; set; }
|
|
}
|