/ src / Ryujinx.UI.Common / Models / Github / GithubReleasesJsonResponse.cs
GithubReleasesJsonResponse.cs
 1  using System.Collections.Generic;
 2  
 3  namespace Ryujinx.UI.Common.Models.Github
 4  {
 5      public class GithubReleasesJsonResponse
 6      {
 7          public string Name { get; set; }
 8          public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
 9      }
10  }