mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 02:17:43 +02:00
12 lines
305 B
C#
12 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; }
|
|
}
|
|
}
|