mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 06:10:06 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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; }
|
|
}
|
|
}
|