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