27 lines
595 B
C#
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; }
|
|||
|
}
|
|||
|
}
|