initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Indotalent.Infrastructure.OData;
|
||||
|
||||
public class ODataResponse<T>
|
||||
{
|
||||
[JsonPropertyName("value")]
|
||||
public List<T> Value { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("@odata.count")]
|
||||
public int Count { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user