using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Common.HotSpot { /// /// Represents a hot-spot network provider. /// public interface IHotSpotProvider { /// /// Gets a value indicating whether the hot spot network is active. /// bool IsEnabled { get; } /// /// Enables the hot spot. /// /// The password. /// Task EnableHotSpot(String password); /// /// Disables the hot spot. /// /// Task DisableHotSpot(); } }