blob: 0f83e32cce47f0b4805fd20ff618715753e9df1b (
plain) (
tree)
|
|
using System.Collections.Generic;
namespace Ryujinx.Ui.Common.Models.Github
{
public class GithubReleasesJsonResponse
{
public string Name { get; set; }
public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
}
}
|