mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-14 04:57:15 +00:00
17 lines
449 B
C#
17 lines
449 B
C#
using PepperDash.Essentials.Room.Config;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Room
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IEssentialsRoomPropertiesConfig
|
|
/// </summary>
|
|
public interface IEssentialsRoomPropertiesConfig
|
|
{
|
|
EssentialsRoomPropertiesConfig PropertiesConfig { get; }
|
|
}
|
|
}
|