public bool Equals(ClarifyGenericMapEntry other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.ClarifyGeneric, ClarifyGeneric) && Equals(other.Model, Model) && Equals(other.NewRoot, NewRoot));
 }
 public void AddChildGenericMap(ClarifyGenericMapEntry clarifyGenericMap)
 {
     _childMaps.Add(clarifyGenericMap);
 }