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