/// <inheritdoc />
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (TargetProperty != null ? TargetProperty.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ TargetPropertyIndex;
         return(hashCode);
     }
 }
        public override int GetHashCode()
        {
            unchecked
            {
                var hashCode = OnCompleted != null?OnCompleted.GetHashCode() : 0;

                hashCode = (hashCode * 397) ^ (АnimationInitializer != null ? АnimationInitializer.GetHashCode() : 0);
                hashCode = (hashCode * 397) ^ (TargetProperty != null ? TargetProperty.GetHashCode() : 0);
                hashCode = (hashCode * 397) ^ (Name != null ? Name.GetHashCode() : 0);
                return(hashCode);
            }
        }