mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-25 04:27:42 +02:00

* Let’s start again * Read folders and such * Remove Open Mod Folder menu items * Fix folder opening, Selecting/deselecting * She works * Fix GTK * AddMod * Delete * Fix duplicate entries * Fix file check * Avalonia 11 * Style fixes * Final style fixes * Might be too general * Remove unnecessary using * Enable new mods by default * More cleanup * Fix saving metadata * Dont deseralise ModMetadata several times * Avalonia I hate you * Confirmation dialgoues * Allow selecting multiple folders * Add back secondary folder * Search both paths * Fix formatting * Apply suggestions from code review Co-authored-by: Ac_K <Acoustik666@gmail.com> * Rename Title to Application * Generic locale key * Apply suggestions from code review Co-authored-by: Ac_K <Acoustik666@gmail.com> * Locale Updates * GDK Feedback * Fix --------- Co-authored-by: Ac_K <Acoustik666@gmail.com>
9 lines
200 B
C#
9 lines
200 B
C#
namespace Ryujinx.Common.Configuration
|
|
{
|
|
public class Mod
|
|
{
|
|
public string Name { get; set; }
|
|
public string Path { get; set; }
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|