using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace LifePayment.Domain.Shared;
|
|
public class ACOOLYOption
|
{
|
public string PartnerId { get; set; }
|
|
public string SecrtKey { get; set; }
|
|
public string ServerHost { get; set; }
|
|
public string Accesskey { get; set; }
|
|
public string NotifyUrl { get; set; }
|
}
|