Mod.cs
1 namespace Ryujinx.Common.Configuration 2 { 3 public class Mod 4 { 5 public string Name { get; set; } 6 public string Path { get; set; } 7 public bool Enabled { get; set; } 8 } 9 }
1 namespace Ryujinx.Common.Configuration 2 { 3 public class Mod 4 { 5 public string Name { get; set; } 6 public string Path { get; set; } 7 public bool Enabled { get; set; } 8 } 9 }