<PackageReference Include="Relativity.Transfer.Client" Version="7.0.11" />

FileItem

public class FileItem
namespace Relativity.Transfer { public class FileItem { public long Length { get; set; } public string FolderName { get; set; } public string FullName { get; set; } public string Name { get; set; } public FileItem() { Length = 0; FolderName = string.Empty; FullName = string.Empty; Name = string.Empty; } } }