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