sunpengfei
昨天 1482f950f2b30835a268ae9e6c6bd817ba47a684
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
37
38
39
40
41
42
43
44
45
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 WxmpOptions : IConfigurableOptions
    {
        public WxmpOptions()
        {
            Items = [];
        }
 
        public List<WxmpOptionsItem> Items { get; set; }
    }
 
    public class WxmpOptionsItem
    {
        /// <summary>
        /// 编号
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 小程序ID
        /// </summary>
        public string AppId { get; set; }
 
        /// <summary>
        /// 小程序密钥
        /// </summary>
        public string AppSecret { get; set; }
 
        /// <summary>
        /// 版本
        /// </summary>
        public string EnvVersion { get; set; }
    }
}