using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DevicePushPayload Data Structure.
///
[Serializable]
public class DevicePushPayload : AopObject
{
///
/// 设备唯一ID
///
[XmlElement("device_id")]
public string DeviceId { get; set; }
///
/// 消息通知数据模型
///
[XmlElement("notify_params")]
public string NotifyParams { get; set; }
///
/// 业务场景
///
[XmlElement("scene")]
public string Scene { get; set; }
}
}