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