/// <summary>
        /// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
        /// </summary>
        /// <param name="obj">An object to compare with this instance.</param>
        /// <returns>
        /// A value that indicates the relative order of the objects being compared. The return value has these meanings: Value Meaning Less than zero This instance precedes <paramref name="obj" /> in the sort order. Zero This instance occurs in the same position in the sort order as <paramref name="obj" />. Greater than zero This instance follows <paramref name="obj" /> in the sort order.
        /// </returns>
        int IComparable.CompareTo(object obj)
        {
            PocketExploreItem item = (PocketExploreItem)obj;

            if (!PublishedTime.HasValue)
            {
                return(1);
            }
            if (!item.PublishedTime.HasValue)
            {
                return(-1);
            }

            return(DateTime.Compare(PublishedTime.Value, item.PublishedTime.Value));
        }
        /// <summary>
        /// Determines whether the specified <see cref="System.Object" />, is equal to this instance.
        /// </summary>
        /// <param name="obj">The <see cref="System.Object" /> to compare with this instance.</param>
        /// <returns>
        ///   <c>true</c> if the specified <see cref="System.Object" /> is equal to this instance; otherwise, <c>false</c>.
        /// </returns>
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            PocketExploreItem item = obj as PocketExploreItem;

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

            return(ID == item.ID);
        }
        /// <summary>
        /// Implements the operator ==.
        /// </summary>
        /// <param name="a">A.</param>
        /// <param name="b">The b.</param>
        /// <returns>
        /// The result of the operator.
        /// </returns>
        public static bool operator ==(PocketExploreItem a, PocketExploreItem b)
        {
            if (Object.ReferenceEquals(a, b))
            {
                return(true);
            }

            PocketExploreItem itemA = (PocketExploreItem)a;
            PocketExploreItem itemB = (PocketExploreItem)b;

            if ((Object)itemA == null || (Object)itemB == null)
            {
                return(false);
            }

            return(itemA.ID == itemB.ID);
        }