File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public ChangesetModel GetInfo(bool forceCacheInvalidation = false)
99
99
/// /Gets the diffs
100
100
/// </summary>
101
101
/// <returns></returns>
102
- public IList < ChangesetDiffModel > GetDiffs ( bool forceCacheInvalidation = false )
102
+ public List < ChangesetDiffModel > GetDiffs ( bool forceCacheInvalidation = false )
103
103
{
104
104
return Client . Get < List < ChangesetDiffModel > > ( Uri + "/" + Node + "/diffstat" , forceCacheInvalidation ) ;
105
105
}
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class ChangesetDiffModel
36
36
{
37
37
public string Type { get ; set ; }
38
38
public string File { get ; set ; }
39
- public List < DiffModel > Diffstat { get ; set ; }
39
+ public DiffModel Diffstat { get ; set ; }
40
40
41
41
public class DiffModel
42
42
{
You can’t perform that action at this time.
0 commit comments