using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Crestron.SimplSharpPro; using Crestron.SimplSharpPro.DeviceSupport; using PepperDash.Core; namespace PepperDash.Essentials.Core { public interface IOnline { BoolFeedback IsOnline { get; } } ///// ///// ** WANT THIS AND ALL ITS FRIENDS TO GO AWAY ** ///// Defines a class that has a list of CueAction objects, typically ///// for linking functions to user interfaces or API calls ///// //public interface IHasCueActionList //{ // List CueActionList { get; } //} //public interface IHasComPortsHardware //{ // IComPorts ComPortsDevice { 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; } } }