LANCommander/LANCommander.Launcher.Models/Enums/SortBy.cs
Pat Hartl 9d239a0066 Add sorting to launcher
Implements #122
2024-10-30 18:53:05 -05:00

20 lines
453 B
C#

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")]
RecentActivity
}
}