mirror of
https://github.com/tuyoogame/YooAsset.git
synced 2026-05-25 18:20:15 +00:00
22 lines
510 B
C#
22 lines
510 B
C#
|
|
namespace YooAsset
|
|
{
|
|
public struct RequestPackageVersionOptions
|
|
{
|
|
/// <summary>
|
|
/// 在URL末尾添加时间戳
|
|
/// </summary>
|
|
public bool AppendTimeTicks { get; set; }
|
|
|
|
/// <summary>
|
|
/// 超时时间
|
|
/// </summary>
|
|
public int Timeout { get; set; }
|
|
|
|
public RequestPackageVersionOptions(bool appendTimeTicks, int timeout)
|
|
{
|
|
AppendTimeTicks = appendTimeTicks;
|
|
Timeout = timeout;
|
|
}
|
|
}
|
|
} |