using System;
namespace PepperDash.Essentials
{
///
/// 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.
///
public interface IDelayedConfiguration
{
event EventHandler ConfigurationIsReady;
}
}