RaspberryIO_26/Unosquare.RaspberryIO.Abstractions/ISystemInfo.cs
2019-12-04 18:57:18 +01:00

27 lines
595 B
C#

namespace Unosquare.RaspberryIO.Abstractions
{
using System;
/// <summary>
/// Interface for system info.
/// </summary>
public interface ISystemInfo
{
/// <summary>
/// Gets the board revision (1 or 2).
/// </summary>
/// <value>
/// The board revision.
/// </value>
BoardRevision BoardRevision { get; }
/// <summary>
/// Gets the library version.
/// </summary>
/// <value>
/// The library version.
/// </value>
Version LibraryVersion { get; }
}
}