16 lines
290 B
C#
16 lines
290 B
C#
namespace dy.net.model.dto
|
|
{
|
|
public enum OpenListTransferStatus
|
|
{
|
|
Queued = 0,
|
|
WaitingForSource = 1,
|
|
Copying = 2,
|
|
Verifying = 3,
|
|
Promoting = 4,
|
|
WaitingRetry = 5,
|
|
Succeeded = 6,
|
|
Failed = 7,
|
|
Cancelled = 8
|
|
}
|
|
}
|