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

@ -9,6 +9,7 @@ public class Value
int id,
int rev,
Fields fields,
object[] relations,
CommentVersionRef commentVersionRef,
string url
)
@ -16,6 +17,7 @@ public class Value
Id = id;
Rev = rev;
Fields = fields;
Relations = relations;
CommentVersionRef = commentVersionRef;
Url = url;
}
@ -29,6 +31,9 @@ public class Value
[JsonPropertyName("fields")]
public Fields Fields { get; }
[JsonPropertyName("relations")]
public object[] Relations { get; }
[JsonPropertyName("commentVersionRef")]
public CommentVersionRef CommentVersionRef { get; }