Ryujinx/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs

10 lines
253 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Ryujinx.Ui.Common.Models.Github
{
public class GithubReleasesJsonResponse
{
public string Name { get; set; }
public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
}
}