mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
12 lines
304 B
C#
12 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; }
|
|
}
|
|
}
|