Пример #1
0
 public Folder(string folderId, string path, FolderIgnores ignores)
 {
     this.FolderId     = folderId;
     this.Path         = path;
     this.SyncState    = FolderSyncState.Idle;
     this.syncingPaths = new HashSet <string>();
     this._ignores     = ignores;
 }
Пример #2
0
 public Folder(string folderId, string path, FolderSyncState syncState, FolderIgnores ignores)
 {
     this.FolderId = folderId;
     this.Path = path;
     this.SyncState = syncState;
     this.syncingPaths = new HashSet<string>();
     this._ignores = ignores;
 }