namespace Unosquare.RaspberryIO.Computer { /// /// Represents the OS Information /// public class OsInfo { /// /// System name /// public string SysName { get; set; } /// /// Node name /// public string NodeName { get; set; } /// /// Release level /// public string Release { get; set; } /// /// Version level /// public string Version { get; set; } /// /// Hardware level /// public string Machine { get; set; } /// /// Domain name /// public string DomainName { get; set; } /// /// Returns a that represents this instance. /// /// /// A that represents this instance. /// public override string ToString() => $"{SysName} {Release} {Version}"; } }