using System;
namespace FastGithub.Scanner.LookupProviders
{
    /// 
    /// Github公开的域名与ip关系提供者选项
    /// 
    [Options("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");
    }
}