2024-10-30 18:53:05 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Launcher.Models.Enums
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum SortBy
|
|
|
|
|
|
{
|
|
|
|
|
|
Title,
|
|
|
|
|
|
[Display(Name = "Date Added")]
|
|
|
|
|
|
DateAdded,
|
|
|
|
|
|
[Display(Name = "Date Released")]
|
|
|
|
|
|
DateReleased,
|
|
|
|
|
|
[Display(Name = "Recent Activity")]
|
2025-01-31 00:17:02 -06:00
|
|
|
|
RecentActivity,
|
|
|
|
|
|
[Display(Name = "Most Played")]
|
|
|
|
|
|
MostPlayed
|
2024-10-30 18:53:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|