public override int GetHashCode()
        {
            int hash = 1;

            if (MobileType != 0)
            {
                hash ^= MobileType.GetHashCode();
            }
            if (DeviceId.Length != 0)
            {
                hash ^= DeviceId.GetHashCode();
            }
            return(hash);
        }
        public override int GetHashCode()
        {
            int hash = 1;

            if (MobileType != 0)
            {
                hash ^= MobileType.GetHashCode();
            }
            if (CurVersion.Length != 0)
            {
                hash ^= CurVersion.GetHashCode();
            }
            return(hash);
        }