BrowseDirectoryResponseDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
public class BrowseDirectoryResponseDto : FileShareResponseBaseDto
{
[JsonProperty(PropertyName = "Items")]
public FileShareItem[] Items { get; set; }
[JsonProperty(PropertyName = "TotalCount")]
public int TotalCount { get; set; }
}
}