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