public bool Equals(EffectMinMax other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && other.m_maxvalue == m_maxvalue && other.m_minvalue == m_minvalue);
 }
 public EffectMinMax(EffectMinMax copy)
     : this(copy.Id, copy.ValueMin, copy.ValueMax, copy)
 {
 }
 public EffectMinMax(EffectMinMax copy)
     : this (copy.Id, copy.ValueMin, copy.ValueMax, copy)
 {
     
 }
 public bool Equals(EffectMinMax other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) && other.m_maxvalue == m_maxvalue && other.m_minvalue == m_minvalue;
 }