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 RootCertContent { get; set; }
|
public string AlipayPublicKey { get; set; }
|
public string NotifyUrl { get; set; }
|
public string EncryptKey { get; set; }
|
}
|
}
|