mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 02:08:28 +02:00
12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections.Generic;
|
|
using Ryujinx.HLE.OsHle;
|
|
|
|
namespace Ryujinx.HLE.Settings
|
|
{
|
|
public class SystemSettings
|
|
{
|
|
public Profile User { get; set; }
|
|
public ColorSet ThemeColor { get; set; }
|
|
}
|
|
}
|