private bool Equals(ComponentStatusChangedEventData other)
 {
     return(Equals(this.Component, other.Component) && this.Duration.Equals(other.Duration) &&
            this.EntityId == other.EntityId && this.IsEnabled.Equals(other.IsEnabled));
 }
 private bool Equals(ComponentStatusChangedEventData other)
 {
     return Equals(this.Component, other.Component) && this.Duration.Equals(other.Duration)
            && this.EntityId == other.EntityId && this.IsEnabled.Equals(other.IsEnabled);
 }