GuiColumns.cs 593 B

12345678910111213141516
  1. namespace Ryujinx.Configuration.Ui
  2. {
  3. public struct GuiColumns
  4. {
  5. public bool FavColumn { get; set; }
  6. public bool IconColumn { get; set; }
  7. public bool AppColumn { get; set; }
  8. public bool DevColumn { get; set; }
  9. public bool VersionColumn { get; set; }
  10. public bool TimePlayedColumn { get; set; }
  11. public bool LastPlayedColumn { get; set; }
  12. public bool FileExtColumn { get; set; }
  13. public bool FileSizeColumn { get; set; }
  14. public bool PathColumn { get; set; }
  15. }
  16. }