mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
15 lines
428 B
C#
15 lines
428 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IDelayedConfiguration
|
|
/// </summary>
|
|
public interface IDelayedConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Event triggered when the configuration is ready. Used when Mobile Control is interacting with a SIMPL program.
|
|
/// </summary>
|
|
event EventHandler<EventArgs> ConfigurationIsReady;
|
|
}
|
|
} |