// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information. using System.Collections.Generic; namespace Microsoft.AspNet.SignalR.Infrastructure { internal struct DiffPair { public ICollection Added; public ICollection Removed; public bool AnyChanges { get { return Added.Count > 0 || Removed.Count > 0; } } } }