diff options
Diffstat (limited to 'src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs')
-rw-r--r-- | src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs b/src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs new file mode 100644 index 00000000..0250e109 --- /dev/null +++ b/src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs @@ -0,0 +1,10 @@ +using System.Collections.Generic; + +namespace Ryujinx.UI.Common.Models.Github +{ + public class GithubReleasesJsonResponse + { + public string Name { get; set; } + public List<GithubReleaseAssetJsonResponse> Assets { get; set; } + } +} |