mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 19:24:53 +00:00
chore: move interfaces to their own files
This commit is contained in:
13
src/PepperDash.Essentials.Core/Devices/IOnline.cs
Normal file
13
src/PepperDash.Essentials.Core/Devices/IOnline.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user