17 lines
379 B
C#
17 lines
379 B
C#
using Pilz.Cryptography;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Pilz.Updating.Administration
|
|
{
|
|
public class ProxyConfiguration
|
|
{
|
|
public bool UseProxyAuth { get; set; }
|
|
public string Username { get; set; }
|
|
public SecureString Password { get; set; }
|
|
}
|
|
}
|