mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
16 lines
386 B
C#
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;
|
|
}
|
|
} |