TransferClientAttributes
using System;
namespace Relativity.Transfer
{
[Flags]
public enum TransferClientAttributes
{
None = 0,
FileSystem = 1,
Http = 2,
Slow = 4,
Medium = 8,
Fast = 16,
HighSpeed = 32
}
}