mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 20:57:43 +02:00
11 lines
231 B
C#
11 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; }
|
|
}
|
|
}
|