aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ui.Common/Configuration/Ui/ColumnSort.cs
blob: cbc13b857d30f0660342902facd228e51fcfdfb7 (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; }
    }
}