mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 00:16:23 +02:00
12 lines
297 B
C#
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; }
|
|
}
|
|
}
|