namespace Unosquare.RaspberryIO.Computer
{
using System.Net;
///
/// Represents a Network Adapter
///
public class NetworkAdapterInfo
{
///
/// Gets the name.
///
public string Name { get; internal set; }
///
/// Gets the IP V4 address.
///
public IPAddress IPv4 { get; internal set; }
///
/// Gets the IP V6 address.
///
public IPAddress IPv6 { get; internal set; }
///
/// Gets the name of the access point.
///
public string AccessPointName { get; internal set; }
///
/// Gets the MAC (Physical) address.
///
public string MacAddress { get; internal set; }
///
/// Gets a value indicating whether this instance is wireless.
///
public bool IsWireless { get; internal set; }
}
}