File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -55,9 +55,15 @@ internal void AppendToPatch(string patch)
55
55
/// </summary>
56
56
public virtual int LinesDeleted { get ; internal set ; }
57
57
58
- public List < Line > AddedLines { get ; internal set ; }
58
+ /// <summary>
59
+ /// Lis of all lines added.
60
+ /// </summary>
61
+ public virtual List < Line > AddedLines { get ; internal set ; }
59
62
60
- public List < Line > DeletedLines { get ; internal set ; }
63
+ /// <summary>
64
+ /// List of all lines deleted.
65
+ /// </summary>
66
+ public virtual List < Line > DeletedLines { get ; internal set ; }
61
67
62
68
63
69
/// <summary>
Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . Text ;
4
4
5
- namespace LibGit2Sharp . Core
5
+ namespace LibGit2Sharp
6
6
{
7
7
public struct Line
8
8
{
You can’t perform that action at this time.
0 commit comments