blob: ea208e9c271ed9193afaf0bf29afaa3cb178bd6a (
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; }
}
}
|