using System; namespace LibGit2Sharp { /// /// Options to define file staging behavior. /// public sealed class StageOptions { /// /// Stage ignored files. (Default = false) /// public bool IncludeIgnored { get; set; } /// /// If set, the passed paths will be treated as explicit paths. /// Use these options to determine how unmatched explicit paths /// should be handled. (Default = null) /// public ExplicitPathsOptions ExplicitPathsOptions { get; set; } } }