sunpengfei
2025-10-09 eeb1019e42abc3fc0e4b10b181b46c02b6e58843
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
using Furion.ConfigurableOptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ApiTools.Core
{
    /// <summary>
    /// 诚立业配置
    /// </summary>
    public class ChengLiYeSmsOptions : IConfigurableOptions
    {
        public ChengLiYeSmsOptions()
        {
            TemplateCodes = [];
        }
 
        /// <summary>
        /// 用户名
        /// </summary>
        public string UserName { get; set; }
        /// <summary>
        /// 密码
        /// </summary>
        public string Password { get; set; }
        /// <summary>
        /// 模板代码
        /// </summary>
        public Dictionary<string, string> TemplateCodes { get; set; }
    }
}