#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