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