-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add issue references to Issue model (#806)
* Add issue references to Issue model * Defined as properties * Nuget checks * Missed the implicit constructor * fix order of declarations in publicapi
- Loading branch information
1 parent
4283ef2
commit dd51622
Showing
3 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace NGitLab.Models; | ||
|
||
public class References | ||
{ | ||
[JsonPropertyName("short")] | ||
public string Short { get; set; } | ||
|
||
[JsonPropertyName("relative")] | ||
public string Relative { get; set; } | ||
|
||
[JsonPropertyName("full")] | ||
public string Full { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters