aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs
blob: 17a13bf157f6f2f7f4ec712f9d1bee6f7278b87d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;

namespace Ryujinx.Common.Configuration
{
    public struct TitleUpdateMetadata
    {
        public string Selected { get; set; }
        public List<string> Paths { get; set; }
    }
}