using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Domain.Options
{
public class SoaOptions
{
///
/// 单点系统地址
///
public string Url { get; set; }
///
/// 单点系统地址
///
public string Url_V3 { get; set; }
///
/// 应用id
///
public int ModuleID { get; set; }
///
/// AppId
///
public string AppId { get; set; }
///
/// AppSecret
///
public string AppSecret { get; set; }
///
/// 公钥
///
public string PublicKey { get; set; }
///
/// 私钥
///
public string PrivateKey { get; set; }
}
}