aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs
blob: 88cf7cdac70c06a7b303712f682add8ab0adf1c5 (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.Ui.Common.Configuration.Ui
{
    public struct ColumnSort
    {
        public int SortColumnId { get; set; }
        public bool SortAscending { get; set; }
    }
}