sunpengfei
8 天以前 aa9198ffa4bf42d96628d4d781e9ef055d65b06e
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
using Furion.ConfigurableOptions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    public class AlipayOptions : IConfigurableOptions
    {
        public string ServerUrl { get; set; }
        public string AppId { get; set; }
        public string PrivateKey { get; set; }
        public string Format { get; set; }
        public string Charset { get; set; }
        public string SignType { get; set; }
        public string AppCertPath { get; set; }
        public string AlipayPublicCertPath { get; set; }
        public string RootCertPath { get; set; }
        public string AlipayPublicKey { get; set; }
        public string NotifyUrl { get; set; }
        public string EncryptKey { get; set; }
    }
}