mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 01:59:59 -06:00
13 lines
305 B
C#
13 lines
305 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; }
|
|
}
|
|
}
|