private void RemoveCloudContent(List <Entry> onlyInCloud)
        {
            _windowElements.WriteLog($"RemoveCloudContent | count {onlyInCloud.Count}");

            foreach (var entry in onlyInCloud)
            {
                _entriesApi.DeleteEntry(_bucketData.bucketId, entry.Entryid.ToString());
                _windowElements.WriteLog($"Not Found local entry {entry.Path} {entry.Entryid} | It will be removed from cloud ");
            }
        }