//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
namespace GameFramework.WebRequest
{
///
/// Web 请求相关常量。
///
internal static class Constant
{
///
/// 默认 Web 请求任务优先级。
///
internal const int DefaultPriority = 0;
}
}