using System.Text.Json.Serialization; namespace Indotalent.Infrastructure.OData; public class ODataResponse { [JsonPropertyName("value")] public List Value { get; set; } = new(); [JsonPropertyName("@odata.count")] public int Count { get; set; } }