public bool Equals(EffectMount other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(base.Equals(other) && other.m_date.Equals(m_date) && other.m_modelId == m_modelId && other.m_mountId == m_mountId); }
public EffectMount(EffectMount copy) : this (copy.Id, copy.m_mountId, copy.m_date, copy.m_modelId, copy) { }
public bool Equals(EffectMount other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return base.Equals(other) && other.m_date.Equals(m_date) && other.m_modelId == m_modelId && other.m_mountId == m_mountId; }
public EffectMount(EffectMount copy) : this(copy.Id, copy.m_mountId, copy.m_date, copy.m_modelId, copy) { }