25 lines
543 B
C#
25 lines
543 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenSmsgDataSetModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenSmsgDataSetModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 测试
|
|
/// </summary>
|
|
[XmlElement("paramone")]
|
|
public string Paramone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 测试参数2
|
|
/// </summary>
|
|
[XmlElement("paramtwo")]
|
|
public string Paramtwo { get; set; }
|
|
}
|
|
}
|