Ready to beta test
This commit is contained in:
19
classlib/WIQL/SortColumn.cs
Normal file
19
classlib/WIQL/SortColumn.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Mesa_Backlog.Library.WIQL;
|
||||
|
||||
public class SortColumn
|
||||
{
|
||||
[JsonConstructor]
|
||||
public SortColumn(
|
||||
Field field,
|
||||
bool descending
|
||||
)
|
||||
{
|
||||
Field = field;
|
||||
Descending = descending;
|
||||
}
|
||||
|
||||
public Field Field { init; get; }
|
||||
public bool Descending { init; get; }
|
||||
}
|
Reference in New Issue
Block a user