ADO System Parent

This commit is contained in:
2024-09-11 12:25:44 -07:00
parent ece70e7fd8
commit 45502a30a9
9 changed files with 27 additions and 31 deletions

View File

@ -20,7 +20,9 @@ public class WorkItem
float? effort,
int id,
string iterationPath,
int? parent,
int? priority,
object[]? relations,
string? requester,
DateTime? resolvedDate,
int revision,
@ -45,7 +47,9 @@ public class WorkItem
Effort = effort;
Id = id;
IterationPath = iterationPath;
Parent = parent;
Priority = priority;
Relations = relations;
Requester = requester;
ResolvedDate = resolvedDate;
Revision = revision;
@ -71,7 +75,9 @@ public class WorkItem
public float? Effort { get; set; } // { init; get; }
public int Id { get; set; } // { init; get; }
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 string? Requester { get; set; } // { init; get; }
public DateTime? ResolvedDate { get; set; } // { init; get; }
public int Revision { get; set; } // { init; get; }