mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 20:34:51 +00:00
14 lines
262 B
C#
14 lines
262 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IDelayedConfiguration
|
|
/// </summary>
|
|
public interface IDelayedConfiguration
|
|
{
|
|
|
|
|
|
event EventHandler<EventArgs> ConfigurationIsReady;
|
|
}
|
|
} |