mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-02 22:34:57 +00:00
16 lines
416 B
C#
16 lines
416 B
C#
using PepperDash.Essentials.Room.Config;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Room
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IEssentialsRoomPropertiesConfig
|
|
/// </summary>
|
|
public interface IEssentialsRoomPropertiesConfig
|
|
{
|
|
/// <summary>
|
|
/// Gets the PropertiesConfig
|
|
/// </summary>
|
|
EssentialsRoomPropertiesConfig PropertiesConfig { get; }
|
|
}
|
|
}
|