aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/Models/Github/GithubReleaseAssetJsonResponse.cs
blob: 8f528dc0bb4e0e653e2a10486560923aa0903372 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.UI.Common.Models.Github
{
    public class GithubReleaseAssetJsonResponse
    {
        public string Name { get; set; }
        public string State { get; set; }
        public string BrowserDownloadUrl { get; set; }
    }
}