Exemplo n.º 1
0
        /// <inheritdoc/>
        public override bool Equals(GetValueToBeValidatedResponse other)
        {
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            if (!(other is SuccessfulGetValueToBeValidatedResponse successResponse))
            {
                return(false);
            }

            return(Equals(Value, successResponse.Value));
        }
 /// <inheritdoc/>
 public override bool Equals(GetValueToBeValidatedResponse other) => ReferenceEquals(this, other);