This commit is contained in:
2024-09-13 14:14:22 -07:00
parent 45502a30a9
commit 513e8ae4fc
7 changed files with 234 additions and 8 deletions

View File

@ -22,7 +22,7 @@ public class WorkItem
string iterationPath,
int? parent,
int? priority,
object[]? relations,
Relation[]? relations,
string? requester,
DateTime? resolvedDate,
int revision,
@ -77,7 +77,7 @@ public class WorkItem
public string IterationPath { get; set; } // { init; get; }
public int? Parent { get; set; } // { init; get; }
public int? Priority { get; set; } // { init; get; }
public object[]? Relations { get; set; } // { init; get; }
public Relation[]? Relations { get; set; } // { init; get; }
public string? Requester { get; set; } // { init; get; }
public DateTime? ResolvedDate { get; set; } // { init; get; }
public int Revision { get; set; } // { init; get; }