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

            if (other == null)
            {
                return(false);
            }
            else
            {
                return(Hla24.Equals(other.Hla24));
            }
        }