We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 149ac6e + 300f61a commit 6aad472Copy full SHA for 6aad472
1 file changed
DotNetHowToSecurityTrimming/DotNetHowToSecurityTrimming/BatchResponse.cs
@@ -0,0 +1,22 @@
1
+using Newtonsoft.Json;
2
+using System;
3
+
4
+namespace DotNetHowToSecurityTrimming
5
+{
6
+ public class BatchResponse
7
+ {
8
+ public string Id { get; set; }
9
10
+ public BatchResponseBody Body { get; set; }
11
+ }
12
13
+ public class BatchResponseBody
14
15
+ public string[] Value { get; set; }
16
17
18
+ public class BatchResult
19
20
+ public BatchResponse[] Responses { get; set; }
21
22
+}
0 commit comments