Ejemplo n.º 1
0
 public bool DeepEquals(DestinyActivityGraphDefinition other)
 {
     return(other != null &&
            ArtElements.DeepEqualsReadOnlyCollections(other.ArtElements) &&
            Connections.DeepEqualsReadOnlyCollections(other.Connections) &&
            DisplayObjectives.DeepEqualsReadOnlyCollections(other.DisplayObjectives) &&
            DisplayProgressions.DeepEqualsReadOnlyCollections(other.DisplayProgressions) &&
            IgnoreForMilestones == other.IgnoreForMilestones &&
            LinkedGraphs.DeepEqualsReadOnlyCollections(other.LinkedGraphs) &&
            Nodes.DeepEqualsReadOnlyCollections(other.Nodes) &&
            UIScreen == other.UIScreen &&
            Blacklisted == other.Blacklisted &&
            Hash == other.Hash &&
            Index == other.Index &&
            Redacted == other.Redacted);
 }