using Furion.ConfigurableOptions; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 百度配置 /// public class BaiduOptions : IConfigurableOptions { /// /// 文字识别 /// public BaiduOcrOptions Ocr { get; set; } } /// /// 百度文字识别配置 /// public class BaiduOcrOptions { /// /// 键 /// public string Key { get; set; } /// /// 秘钥 /// public string Secret { get; set; } } }