refactor: delegate names updated to have no "On" prefix
This commit is contained in:
@@ -8,12 +8,12 @@ public interface IStateEnable : IHasEntity
|
||||
/// <summary>
|
||||
/// Event triggered when the <see cref="Enabled"/> state of the <see cref="IStateEnable"/> changes.
|
||||
/// </summary>
|
||||
event OnNameChangedEventHandler? OnEnabledChanged;
|
||||
event NameChangedEventHandler? OnEnabledChanged;
|
||||
|
||||
/// <summary>
|
||||
/// The value indicating whether the <see cref="IStateEnable"/> is enabled.
|
||||
/// </summary>
|
||||
bool Enabled { get; set; }
|
||||
|
||||
delegate void OnNameChangedEventHandler(IStateEnable sender, bool previousState);
|
||||
delegate void NameChangedEventHandler(IStateEnable sender, bool previousState);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user