aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Common/Configuration/Mod.cs
blob: 052c7c8d12dd72aef0fe57da1365e40bbe3a6d99 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Common.Configuration
{
    public class Mod
    {
        public string Name { get; set; }
        public string Path { get; set; }
        public bool Enabled { get; set; }
    }
}