using System; namespace PepperDash.Essentials { /// /// Defines the contract for IDelayedConfiguration /// public interface IDelayedConfiguration { /// /// Event triggered when the configuration is ready. Used when Mobile Control is interacting with a SIMPL program. /// event EventHandler ConfigurationIsReady; } }