refactor: delegate names updated to have no "On" prefix
This commit is contained in:
@@ -9,12 +9,12 @@ public interface IEntity : IInitializable, IHasStateEnable
|
||||
/// Event triggered when the <see cref="Id"/> of the <see cref="IEntity"/> changes.
|
||||
/// The string action parameter is the previous <see cref="Id"/> of the <see cref="IEntity"/>.
|
||||
/// </summary>
|
||||
event OnIdChangedEventHandler? OnIdChanged;
|
||||
event IdChangedEventHandler? OnIdChanged;
|
||||
|
||||
/// <summary>
|
||||
/// The ID of the <see cref="IEntity"/>.
|
||||
/// </summary>
|
||||
string Id { get; set; }
|
||||
|
||||
delegate void OnIdChangedEventHandler(IEntity sender, string previousId);
|
||||
delegate void IdChangedEventHandler(IEntity sender, string previousId);
|
||||
}
|
||||
|
Reference in New Issue
Block a user