public static bool AnyChanges(this FocusItemSyncResult s)
 {
     return(s.AddedItems.Length > 0 || s.ChangedItems.Length > 0 ||
            s.RemovedItems.Length > 0);
 }
 public static bool ItemsUpdated(this FocusItemSyncResult s)
 {
     return(s.AddedItems.Length > 0 || s.ChangedItems.Length > 0);
 }