Added initial models.

This commit is contained in:
2025-02-16 15:27:21 -05:00
parent 3369b2a86a
commit 8f3b07543f
6 changed files with 59 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
using System.ComponentModel;
namespace Harmonia.Core.Models;
public class SortOption(string fieldName, ListSortDirection direction)
{
public string FieldName { get; init; } = fieldName;
public ListSortDirection Direction { get; init; } = direction;
}