FastGithub/FastGithub.Scanner/ScanMiddlewares/HttpsScanOptions.cs
2021-06-19 13:27:34 +08:00

11 lines
226 B
C#

using System;
namespace FastGithub.Scanner.ScanMiddlewares
{
[Options("Github:Scan:HttpsScan")]
sealed class HttpsScanOptions
{
public TimeSpan Timeout { get; set; } = TimeSpan.FromSeconds(5d);
}
}