using System.Xml.Serialization;
|
|
|
|
namespace BWP.ABCClient.Common
|
|
{
|
|
public class MessageBase
|
|
{
|
|
[XmlElement(ElementName = "Signature-Algorithm")]
|
|
public string SignatureAlgorithm { get; set; }
|
|
|
|
/// <summary>
|
|
/// 签名
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 使用私钥加密消息后得到的一个签名
|
|
/// </remarks>
|
|
public string Signature { get; set; }
|
|
}
|
|
}
|