aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/TitleUpdateMetadata.cs
blob: a1b14f6f7583b25ce63719835d4fbd721af96d8d (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; }
    }
}