GithubReleasesJsonResponse.cs 253 B

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