LeviLamina
Loading...
Searching...
No Matches
SortBy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace catalog {
6
7enum class SortBy : uint {
8 Alphabetical = 0,
9 AverageRating = 1,
10 Price = 2,
11 StartDate = 3,
12 Relevance = 4,
13 Installed = 5,
14};
15
16}