This repository has been archived on 2024-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
Salesforce.NET/QueryResponse.cs
2021-04-20 18:10:07 -04:00

17 lines
363 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace Salesforce.NET
{
public class QueryResponse<T>
{
public bool Done { get; set; }
[JsonProperty("totalSize")]
public bool TotalRecords { get; set; }
public string NextRecordsUrl { get; set; }
public ICollection<T> Records { get; set; }
}
}