/ src / Ryujinx.UI.Common / Configuration / UI / GuiColumns.cs
GuiColumns.cs
 1  namespace Ryujinx.UI.Common.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  }