mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-15 13:36:48 +00:00
chore: move all files to file-scoped namespace
This commit is contained in:
parent
aaa5b0532b
commit
3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions
|
|
@ -5,37 +5,36 @@ using PepperDash.Essentials.Core.DeviceTypeInterfaces;
|
|||
using PepperDash.Essentials.Devices.Common.Displays;
|
||||
using PepperDash.Essentials.Room.Config;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.Room;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.Room
|
||||
/// <summary>
|
||||
/// Defines the contract for IEssentialsTechRoom
|
||||
/// </summary>
|
||||
public interface IEssentialsTechRoom : IEssentialsRoom, ITvPresetsProvider, IBridgeAdvanced, IRunDirectRouteAction
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the contract for IEssentialsTechRoom
|
||||
/// Gets the PropertiesConfig
|
||||
/// </summary>
|
||||
public interface IEssentialsTechRoom : IEssentialsRoom, ITvPresetsProvider, IBridgeAdvanced, IRunDirectRouteAction
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the PropertiesConfig
|
||||
/// </summary>
|
||||
EssentialsTechRoomConfig PropertiesConfig { get; }
|
||||
EssentialsTechRoomConfig PropertiesConfig { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Tuners
|
||||
/// </summary>
|
||||
Dictionary<string, IRSetTopBoxBase> Tuners { get; }
|
||||
/// <summary>
|
||||
/// Gets the Tuners
|
||||
/// </summary>
|
||||
Dictionary<string, IRSetTopBoxBase> Tuners { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Displays
|
||||
/// </summary>
|
||||
Dictionary<string, TwoWayDisplayBase> Displays { get; }
|
||||
/// <summary>
|
||||
/// Gets the Displays
|
||||
/// </summary>
|
||||
Dictionary<string, TwoWayDisplayBase> Displays { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Powers on the room
|
||||
/// </summary>
|
||||
void RoomPowerOn();
|
||||
/// <summary>
|
||||
/// Powers on the room
|
||||
/// </summary>
|
||||
void RoomPowerOn();
|
||||
|
||||
/// <summary>
|
||||
/// Powers off the room
|
||||
/// </summary>
|
||||
void RoomPowerOff();
|
||||
}
|
||||
/// <summary>
|
||||
/// Powers off the room
|
||||
/// </summary>
|
||||
void RoomPowerOff();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue