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