yzh
2022-03-14 9f5df1b277c9f72f0aeb847de042de4934286f60
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
 
namespace Dao
{
  public class GwSetting
  {
    public string SmtpProfile { get; set; }
 
    public string WxProfile { get; set; }
 
    public string SmsProfile { get; set; }
 
    public string CmSegments { get; set; }
 
    public string CuSegments { get; set; }
 
    public string CtSegments { get; set; }
 
    public string GwName { get; set; }
 
    public string Version { get; set; }
 
//新加
    public string BlackMoContent { get; set; }
 
 
  }
}