WorkspaceResultsDto
class WorkspaceResultsDto
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class WorkspaceResultsDto
{
[JsonProperty(PropertyName = "TotalResultCount")]
public int TotalResultCount { get; set; }
[JsonProperty(PropertyName = "ResultCount")]
public int ResultCount { get; set; }
[JsonProperty(PropertyName = "Results", NullValueHandling = NullValueHandling.Ignore)]
public List<WorkspaceDto> Results { get; set; }
public WorkspaceResultsDto()
{
Results = new List<WorkspaceDto>();
ResultCount = 0;
TotalResultCount = 0;
}
}
}