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

19 lines
480 B
C#

using System;
namespace FastGithub.Scanner.LookupProviders
{
[Options("Github: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");
}
}