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

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; } } }