24 lines
604 B
C#
24 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.Shelly.Options
|
|
{
|
|
/// <summary>
|
|
/// Common options across all shelly devices
|
|
/// </summary>
|
|
public interface IShellyCommonOptions : IShellyAuthOptions
|
|
{
|
|
/// <summary>
|
|
/// URI for the Shelly device
|
|
/// </summary>
|
|
Uri ServerUri { get; }
|
|
/// <summary>
|
|
/// Default timeout for HTTP requests if a specific timeout is not supplied
|
|
/// </summary>
|
|
TimeSpan? DefaultTimeout { get; }
|
|
}
|
|
}
|