2024-07-12 18:22:17 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-08-07 18:48:13 -05:00
|
|
|
|
namespace LANCommander.Launcher.Models.Enums
|
2024-07-12 18:22:17 -05:00
|
|
|
|
{
|
|
|
|
|
|
public enum GroupBy
|
|
|
|
|
|
{
|
|
|
|
|
|
None,
|
|
|
|
|
|
Collection,
|
|
|
|
|
|
Genre,
|
2024-07-12 22:26:16 -05:00
|
|
|
|
Platform
|
2024-07-12 18:22:17 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|