RaspberryIO_26/Unosquare.RaspberryIO.Abstractions/ISystemInfo.cs

29 lines
552 B
C#
Raw Normal View History

2019-12-06 22:24:34 +01:00
using System;
namespace Unosquare.RaspberryIO.Abstractions {
/// <summary>
/// Interface for system info.
/// </summary>
public interface ISystemInfo {
2019-12-04 18:57:18 +01:00
/// <summary>
2019-12-06 22:24:34 +01:00
/// Gets the board revision (1 or 2).
2019-12-04 18:57:18 +01:00
/// </summary>
2019-12-06 22:24:34 +01:00
/// <value>
/// The board revision.
/// </value>
BoardRevision BoardRevision {
get;
}
/// <summary>
/// Gets the library version.
/// </summary>
/// <value>
/// The library version.
/// </value>
Version LibraryVersion {
get;
}
}
2019-12-04 18:57:18 +01:00
}