using System; 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() => $"{this.SysName} {this.Release} {this.Version}"; } }