18 lines
358 B
C#
18 lines
358 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// MonitorHeartbeatSynResponse.
|
|
/// </summary>
|
|
public class MonitorHeartbeatSynResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 商户pid
|
|
/// </summary>
|
|
[XmlElement("pid")]
|
|
public string Pid { get; set; }
|
|
}
|
|
}
|