ShownFileTypes.cs 328 B

123456789101112
  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. }