ColumnSort.cs 178 B

12345678
  1. namespace Ryujinx.Configuration.Ui
  2. {
  3. public struct ColumnSort
  4. {
  5. public int SortColumnId { get; set; }
  6. public bool SortAscending { get; set; }
  7. }
  8. }