using System.Collections.Generic; using System.Threading.Tasks; namespace SourceGit.ViewModels { public class LFSFetch : Popup { public List Remotes => _repo.Remotes; public Models.Remote SelectedRemote { get; set; } public LFSFetch(Repository repo) { _repo = repo; SelectedRemote = _repo.Remotes[0]; View = new Views.LFSFetch() { DataContext = this }; } public override Task Sure() { _repo.SetWatcherEnabled(false); ProgressDescription = $"Fetching LFS objects from remote ..."; return Task.Run(() => { new Commands.LFS(_repo.FullPath).Fetch(SelectedRemote.Name, SetProgressDescription); CallUIThread(() => _repo.SetWatcherEnabled(true)); return true; }); } private readonly Repository _repo = null; } }