perf: regular events to custom events
This commit is contained in:
@@ -8,12 +8,12 @@ public interface IInitializable
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="Initialize"/> method is called successfully.
|
||||
/// </summary>
|
||||
event InitializedEventHandler? OnInitialized;
|
||||
Event<IInitializable> OnInitialized { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="IInitializable"/> method is called successfully.
|
||||
/// </summary>
|
||||
event FinalizedEventHandler? OnFinalized;
|
||||
Event<IInitializable> OnFinalized { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The value indicating whether the entity has been initialized.
|
||||
|
||||
Reference in New Issue
Block a user