ADO System Parent

This commit is contained in:
2024-09-11 12:24:45 -07:00
parent d2cc0c0e0b
commit 5d679ae04c
4 changed files with 49 additions and 20 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; }