RaspberryIO_26/Unosquare.RaspberryIO/Computer/WirelessNetworkInfo.cs
2019-12-06 23:12:34 +01:00

30 lines
645 B
C#

using System;
namespace Unosquare.RaspberryIO.Computer {
/// <summary>
/// Represents a wireless network information.
/// </summary>
public class WirelessNetworkInfo {
/// <summary>
/// Gets the ESSID of the Wireless network.
/// </summary>
public String? Name {
get; internal set;
}
/// <summary>
/// Gets the network quality.
/// </summary>
public String? Quality {
get; internal set;
}
/// <summary>
/// Gets a value indicating whether this instance is encrypted.
/// </summary>
public Boolean IsEncrypted {
get; internal set;
}
}
}