/// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (NumberOfDays != null)
         {
             hashCode = hashCode * 59 + NumberOfDays.GetHashCode();
         }
         if (AgeOfFile != null)
         {
             hashCode = hashCode * 59 + AgeOfFile.GetHashCode();
         }
         return(hashCode);
     }
 }
        public override int GetHashCode()
        {
            int hash = 1;

            if (Id.Length != 0)
            {
                hash ^= Id.GetHashCode();
            }
            if (NumberOfDays != 0)
            {
                hash ^= NumberOfDays.GetHashCode();
            }
            if (defaultReward_ != null)
            {
                hash ^= DefaultReward.GetHashCode();
            }
            hash ^= DailyRewards.GetHashCode();
            if (_unknownFields != null)
            {
                hash ^= _unknownFields.GetHashCode();
            }
            return(hash);
        }