using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsSceneCommandReceiveModel Data Structure.
///
[Serializable]
public class AlipayInsSceneCommandReceiveModel : AopObject
{
///
/// 命令对象
///
[XmlElement("command")]
public Command Command { get; set; }
}
}