Moved to ADO2024 PI#
Ran SortCodeMethods
This commit is contained in:
21
ADO2024/PI3/WIQL/SortColumn.cs
Normal file
21
ADO2024/PI3/WIQL/SortColumn.cs
Normal file
@ -0,0 +1,21 @@
|
||||
#if WorkItems
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace File_Folder_Helper.ADO2024.PI3.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; }
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user