Files
2026-07-21 14:28:43 +07:00

13 lines
275 B
C#

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; }
}