blob: 67d238d2483da31be4897c7d9c71ef230ed788d9 (
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; }
}
}
|