22 lines
498 B
C#
22 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.Shelly.Options
|
|
{
|
|
public class ShellyOptions : IShellyCommonOptions
|
|
{
|
|
public Uri ServerUri { get; set; }
|
|
public TimeSpan? DefaultTimeout { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
|
|
public ShellyOptions()
|
|
{
|
|
DefaultTimeout = null;
|
|
}
|
|
}
|
|
}
|