<PackageReference Include="Relativity.Server.Transfer.SDK" Version="7.7.0" />

QueryResultSlimDto

using Newtonsoft.Json; using System.Collections.Generic; namespace Relativity.Transfer.Dto { [JsonObject(MemberSerialization.OptIn)] internal class QueryResultSlimDto { [JsonProperty(PropertyName = "TotalCount")] public int TotalCount { get; set; } [JsonProperty(PropertyName = "Objects")] public List<RelativityObjectSlimDto> Objects { get; set; } [JsonProperty(PropertyName = "Fields")] public List<FieldDto> Fields { get; set; } public QueryResultSlimDto() { Objects = new List<RelativityObjectSlimDto>(); Fields = new List<FieldDto>(); } } }