ryujinx/src/Ryujinx/Common/Models/Github/GithubReleasesJsonResponse.cs
2025-05-30 17:08:34 -05:00

12 lines
297 B
C#

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