Files
mapo-iob-libs/EgwProxy.Shelly/Options/ShellyOptions.cs
T
2025-08-07 08:35:34 +02:00

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;
}
}
}