Ryubing/src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs
2024-11-06 19:55:58 -06:00

13 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; }
}
}