using System;
namespace FastGithub.Scanner.LookupProviders
{
[Options("Github:Lookup:GithubMetaProvider")]
sealed class GithubMetaProviderOptions
{
///
/// 是否启用
///
public bool Enable { get; set; }
///
/// meta请求uri
///
public Uri MetaUri { get; set; } = new Uri("https://gitee.com/jiulang/fast-github/raw/master/FastGithub/meta.json");
}
}