1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-31 12:02:55 -06: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; }
}
}