using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
public interface IOnline
{
BoolFeedback IsOnline { get; }
}
///
/// Describes a device that can have a video sync providing device attached to it
///
public interface IAttachVideoStatus : IKeyed
{
// Extension methods will depend on this
}
///
/// For display classes that can provide usage data
///
public interface IDisplayUsage
{
IntFeedback LampHours { get; }
}
public interface IMakeModel : IKeyed
{
string DeviceMake { get; }
string DeviceModel { get; }
}
}