29 lines
552 B
C#
29 lines
552 B
C#
using System;
|
|
|
|
namespace Unosquare.RaspberryIO.Abstractions {
|
|
/// <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;
|
|
}
|
|
}
|
|
}
|