mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-15 05:36:39 +00:00
10 lines
253 B
C#
10 lines
253 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Ryujinx.Ui.Common.Models.Github
|
|||
|
{
|
|||
|
public class GithubReleasesJsonResponse
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
|
|||
|
}
|
|||
|
}
|