mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 15:17:43 +02:00
10 lines
221 B
C#
10 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; }
|
|
}
|
|
}
|