using System; 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 Boolean IsEncrypted { get; internal set; } } }