9 lines
263 B
C#
9 lines
263 B
C#
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;
|
|
} |