FastGithub/FastGithub.Scanner/LookupProviders/GithubMetaProviderOptions.cs
2021-06-24 14:39:00 +08:00

22 lines
566 B
C#

using System;
namespace FastGithub.Scanner.LookupProviders
{
/// <summary>
/// Github公开的域名与ip关系提供者选项
/// </summary>
[Options("Lookup:GithubMetaProvider")]
sealed class GithubMetaProviderOptions
{
/// <summary>
/// 是否启用
/// </summary>
public bool Enable { get; set; }
/// <summary>
/// meta请求uri
/// </summary>
public Uri MetaUri { get; set; } = new Uri("https://gitee.com/jiulang/fast-github/raw/master/FastGithub/meta.json");
}
}