public override bool Equals(object obj)
        {
            var other = obj as VersionQueryHandle;

            if (other == null)
            {
                return(false);
            }

            return(Id.Equals(other.Id) &&
                   Treatment.Equals(other.Treatment) &&
                   Culture.Equals(other.Culture));
        }