Skip to content

Commit c90c235

Browse files
authored
Add WebUrl property to Commit (#127)
1 parent a1960ef commit c90c235

File tree

1 file changed

+2
-0
lines changed
  • src/GitLabApiClient/Models/Commits/Responses

1 file changed

+2
-0
lines changed

src/GitLabApiClient/Models/Commits/Responses/Commit.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ public sealed class Commit
3232
public string Message { get; set; }
3333
[JsonProperty("parent_ids")]
3434
public List<string> ParentIds { get; } = new List<string>();
35+
[JsonProperty("web_url")]
36+
public string WebUrl { get; set; }
3537

3638
}
3739
}

0 commit comments

Comments
 (0)