Beispiel #1
0
 public bool DeepEquals(DestinyActivityInteractableDefinition other)
 {
     return(other != null &&
            Entries.DeepEqualsReadOnlyCollections(other.Entries) &&
            Blacklisted == other.Blacklisted &&
            Hash == other.Hash &&
            Index == other.Index &&
            Redacted == other.Redacted);
 }
Beispiel #2
0
 public bool DeepEquals(DestinyChecklistDefinition other)
 {
     return(other != null &&
            DisplayProperties.DeepEquals(other.DisplayProperties) &&
            Entries.DeepEqualsReadOnlyCollections(other.Entries) &&
            Scope == other.Scope &&
            ViewActionString == other.ViewActionString &&
            Blacklisted == other.Blacklisted &&
            Hash == other.Hash &&
            Index == other.Index &&
            Redacted == other.Redacted);
 }