using LibGit2Sharp.Handlers; namespace LibGit2Sharp { /// /// Collection of parameters controlling Checkout behavior. /// public sealed class CheckoutOptions { /// /// Options controlling checkout behavior. /// public CheckoutModifiers CheckoutModifiers { get; set; } /// /// Callback method to report checkout progress updates through. /// public CheckoutProgressHandler OnCheckoutProgress { get; set; } /// /// Options to manage checkout notifications. /// public CheckoutNotificationOptions CheckoutNotificationOptions { get; set; } } }