mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-15 13:36:48 +00:00
docs: XML comments for Devices.Common
This commit is contained in:
parent
a5d409e93a
commit
f9d9df9d5c
115 changed files with 5772 additions and 4292 deletions
|
|
@ -1,9 +1,9 @@
|
|||
using PepperDash.Essentials.Core;
|
||||
using System.Collections.Generic;
|
||||
using PepperDash.Essentials.Core;
|
||||
using PepperDash.Essentials.Core.Bridges;
|
||||
using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
||||
using PepperDash.Essentials.Devices.Common.Displays;
|
||||
using PepperDash.Essentials.Room.Config;
|
||||
using System.Collections.Generic;
|
||||
using TwoWayDisplayBase = PepperDash.Essentials.Devices.Common.Displays.TwoWayDisplayBase;
|
||||
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.Room
|
||||
|
|
@ -11,15 +11,31 @@ namespace PepperDash.Essentials.Devices.Common.Room
|
|||
/// <summary>
|
||||
/// Defines the contract for IEssentialsTechRoom
|
||||
/// </summary>
|
||||
public interface IEssentialsTechRoom:IEssentialsRoom, ITvPresetsProvider,IBridgeAdvanced,IRunDirectRouteAction
|
||||
public interface IEssentialsTechRoom : IEssentialsRoom, ITvPresetsProvider, IBridgeAdvanced, IRunDirectRouteAction
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the PropertiesConfig
|
||||
/// </summary>
|
||||
EssentialsTechRoomConfig PropertiesConfig { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Tuners
|
||||
/// </summary>
|
||||
Dictionary<string, IRSetTopBoxBase> Tuners { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Displays
|
||||
/// </summary>
|
||||
Dictionary<string, TwoWayDisplayBase> Displays { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Powers on the room
|
||||
/// </summary>
|
||||
void RoomPowerOn();
|
||||
|
||||
/// <summary>
|
||||
/// Powers off the room
|
||||
/// </summary>
|
||||
void RoomPowerOff();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue