You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Disk
|
|
|
|
|
{
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum TransferMode
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
|
|
Move = 1,
|
|
|
|
|
Copy = 2,
|
|
|
|
|
HardLink = 4,
|
|
|
|
|
|
|
|
|
|
HardLinkOrCopy = Copy | HardLink
|
|
|
|
|
}
|
|
|
|
|
}
|