14 lines
407 B
TypeScript
14 lines
407 B
TypeScript
import { BaseModel } from './_base_model';
|
|
export declare class SystemConfigModel extends BaseModel {
|
|
invitationUrl?: string;
|
|
customerServiceUrl?: string;
|
|
depositWeixinUrl?: string;
|
|
depositAlipayUrl?: string;
|
|
depositYunshanfuUrl?: string;
|
|
openDeposit: boolean;
|
|
welfarePool: string;
|
|
stockPrice: string;
|
|
minWithdrawAmount: string;
|
|
minTransferPublicityAmount: string;
|
|
}
|