mirror of
https://github.com/34892002/edgeKey.git
synced 2026-05-22 15:20:38 +08:00
20 lines
374 B
TypeScript
20 lines
374 B
TypeScript
export interface PaymentMethodItem {
|
|
provider: "BEPUSDT" | "EPAY";
|
|
label: string;
|
|
enabled: boolean;
|
|
baseUrl?: string;
|
|
}
|
|
|
|
export interface PaymentConfigValue {
|
|
provider: "BEPUSDT" | "EPAY";
|
|
name: string;
|
|
isEnabled: boolean;
|
|
baseUrl: string;
|
|
appId?: string;
|
|
appSecret?: string;
|
|
pid?: string;
|
|
key?: string;
|
|
notifyUrl?: string;
|
|
returnUrl?: string;
|
|
}
|