aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Models/Github/GithubReleasesJsonResponse.cs
blob: 0f83e32cce47f0b4805fd20ff618715753e9df1b (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; }
    }
}