You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
395 B

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; }
}
}