using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LibGit2Sharp { /// /// Parameters controlling Pull behavior. /// public sealed class PullOptions { /// /// Constructor. /// public PullOptions() { } /// /// Parameters controlling Fetch behavior. /// public FetchOptions FetchOptions { get; set; } /// /// Parameters controlling Merge behavior. /// public MergeOptions MergeOptions { get; set; } } }