mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-24 00:00:12 +08:00
13 lines
192 B
C#
13 lines
192 B
C#
namespace DownKyi.Core.Aria2cNet
|
|
{
|
|
/// <summary>
|
|
/// 下载状态
|
|
/// </summary>
|
|
public enum DownloadResult
|
|
{
|
|
SUCCESS = 1,
|
|
FAILED,
|
|
ABORT
|
|
}
|
|
}
|