namespace EasyBL.WebApi.WebApi
{
///
/// WebService接口 SoapHeader类
public class APISoapHeader : System.Web.Services.Protocols.SoapHeader
{
///
/// token
///
public string token { get; set; }
///
/// 加密签名
///
public string signature { get; set; }
///
/// 时间戳
///
public string timestamp { get; set; }
///
/// 随机数
///
public string nonce { get; set; }
}
}