Files
Essentials/src/PepperDash.Essentials.MobileControl/Interfaces.cs
2025-03-25 22:14:15 -05:00

16 lines
386 B
C#

using System;
namespace PepperDash.Essentials
{
/// <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;
}
}