namespace Unosquare.RaspberryIO.Computer
{
///
/// Represents a wireless network information.
///
public class WirelessNetworkInfo
{
///
/// Gets the ESSID of the Wireless network.
///
public string Name { get; internal set; }
///
/// Gets the network quality.
///
public string Quality { get; internal set; }
///
/// Gets a value indicating whether this instance is encrypted.
///
public bool IsEncrypted { get; internal set; }
}
}