19 lines
393 B
C#
19 lines
393 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.json.WIQL;
|
|
|
|
public class SortColumn
|
|
{
|
|
[JsonConstructor]
|
|
public SortColumn(
|
|
Field field,
|
|
bool descending
|
|
)
|
|
{
|
|
Field = field;
|
|
Descending = descending;
|
|
}
|
|
|
|
public Field Field { get; set; } // { init; get; }
|
|
public bool Descending { get; set; } // { init; get; }
|
|
} |