aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.UI.Common/Configuration/UI/ShownFileTypes.cs
blob: 6c72a69300a58e59a38fcb3b5fc7ef40b35176b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.UI.Common.Configuration.UI
{
    public struct ShownFileTypes
    {
        public bool NSP { get; set; }
        public bool PFS0 { get; set; }
        public bool XCI { get; set; }
        public bool NCA { get; set; }
        public bool NRO { get; set; }
        public bool NSO { get; set; }
    }
}