19 lines
305 B
C#
19 lines
305 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Mesa_Backlog.Library.WIQL;
|
|
|
|
public class WorkItem
|
|
{
|
|
[JsonConstructor]
|
|
public WorkItem(
|
|
int id,
|
|
string url
|
|
)
|
|
{
|
|
Id = id;
|
|
Url = url;
|
|
}
|
|
|
|
public int Id { init; get; }
|
|
public string Url { init; get; }
|
|
} |