mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 18:54:52 +00:00
13 lines
281 B
C#
13 lines
281 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IOnline
|
|
/// </summary>
|
|
public interface IOnline
|
|
{
|
|
/// <summary>
|
|
/// Gets a value indicating whether the device is online.
|
|
/// </summary>
|
|
BoolFeedback IsOnline { get; }
|
|
}
|
|
} |