Skip to content

Commit 6a19b8b

Browse files
committed
(#377) Add UploadUrl property to release model
This now seems to be a requirement in Octokit, so we need to make sure to map this property from the Octokit Release to our internal model, so that we can map it back again, when required. This may require later refactoring, once we figure out how to handle multiple providers.
1 parent 4cdc807 commit 6a19b8b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/GitReleaseManager.Core/Model/Release.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ public sealed class Release
1717

1818
public string HtmlUrl { get; set; }
1919

20+
public string UploadUrl { get; set; }
21+
2022
public bool Draft { get; set; }
2123

2224
public bool Prerelease { get; set; }

0 commit comments

Comments
 (0)