aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/Models/Github/GithubReleasesJsonResponse.cs
blob: 0250e1094b67cfc343b9131045f4485c85c07400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace Ryujinx.UI.Common.Models.Github
{
    public class GithubReleasesJsonResponse
    {
        public string Name { get; set; }
        public List<GithubReleaseAssetJsonResponse> Assets { get; set; }
    }
}