1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-11-19 02:16:43 +00:00
Ryujinx/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs

10 lines
253 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace Ryujinx.Ui.Common.Models.Github
{
public class GithubReleasesJsonResponse
{
public string Name { get; set; }
public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
}
}