aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Models/Github/GithubReleaseAssetJsonResponse.cs
blob: 10d0147832105f3ba9e2381b1d3ea06d097db60a (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; }
    }
}