Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit 6aad472

Browse files
authored
Merge pull request #62 from HeidiSteen/main
Restored file (BatchResponse.cs)
2 parents 149ac6e + 300f61a commit 6aad472

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)