public override int GetHashCode()
 {
     unchecked
     {
         int hash = 41;
         if (Opportunities != null)
         {
             hash = hash * 59 + Opportunities.GetHashCode();
         }
         if (Count != null)
         {
             hash = hash * 59 + Count.GetHashCode();
         }
         return(hash);
     }
 }