19 lines
349 B
C#
19 lines
349 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Adaptation.FileHandlers.json.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; }
|
|
} |