mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 09:54:58 +00:00
22 lines
509 B
C#
22 lines
509 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Room.MobileControl
|
|
{
|
|
/// <summary>
|
|
/// Represents a room whose configuration is derived from runtime data,
|
|
/// perhaps from another program, and that the data may not be fully
|
|
/// available at startup.
|
|
/// </summary>
|
|
public interface IDelayedConfiguration
|
|
{
|
|
event EventHandler<EventArgs> ConfigurationIsReady;
|
|
}
|
|
}
|
|
|