BrowseDirectoryRequestDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
internal class BrowseDirectoryRequestDto
{
[JsonProperty(PropertyName = "FileshareId")]
public int { get; set; }
[JsonProperty(PropertyName = "Path")]
public string Path { get; set; }
[JsonProperty(PropertyName = "Page")]
public int Page { get; set; }
[JsonProperty(PropertyName = "PageSize")]
public int PageSize { get; set; }
[JsonProperty(PropertyName = "MaxItems")]
public int MaxItems { get; set; }
}
}