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