Files

22 lines
500 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwProxy.Shelly.Options
{
public class Shelly1Options : IShellyCommonOptions
{
public Uri ServerUri { get; set; }
public TimeSpan? DefaultTimeout { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public Shelly1Options()
{
DefaultTimeout = null;
}
}
}