using System; namespace LibGit2Sharp { /// /// The targets of a Tree based diff comparison. /// [Flags] public enum DiffTargets { /// /// The repository index. /// Index = 1, /// /// The working directory. /// WorkingDirectory = 2, } }