mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-17 12:42:37 +00:00
13 lines
304 B
C#
13 lines
304 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.UI.Common.Models.Github
|
|
{
|
|
public class GithubReleasesJsonResponse
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string TagName { get; set; }
|
|
public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
|
|
}
|
|
}
|