sunpengfei
7 天以前 96dbcd968f3cd66ac27bd053e6ed67263104ae2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using Furion.ConfigurableOptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 百度配置
    /// </summary>
    public class BaiduOptions : IConfigurableOptions
    {
        /// <summary>
        /// 文字识别
        /// </summary>
        public BaiduOcrOptions Ocr { get; set; }
    }
 
    /// <summary>
    /// 百度文字识别配置
    /// </summary>
    public class BaiduOcrOptions
    {
        /// <summary>
        /// 键
        /// </summary>
        public string Key { get; set; }
 
        /// <summary>
        /// 秘钥
        /// </summary>
        public string Secret { get; set; }
    }
}