21 lines
372 B
C#
21 lines
372 B
C#
#if WorkItems
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace File_Folder_Helper.ADO2024.PI3.WIQL;
|
|
|
|
public class WorkItem
|
|
{
|
|
[JsonConstructor]
|
|
public WorkItem(
|
|
int id,
|
|
string url
|
|
)
|
|
{
|
|
Id = id;
|
|
Url = url;
|
|
}
|
|
|
|
public int Id { get; set; } // { init; get; }
|
|
public string Url { get; set; } // { init; get; }
|
|
}
|
|
#endif |