11 lines
221 B
C#
11 lines
221 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Common.Configuration
|
|
{
|
|
public struct TitleUpdateMetadata
|
|
{
|
|
public string Selected { get; set; }
|
|
public List<string> Paths { get; set; }
|
|
}
|
|
}
|