using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DeviceProductInfo Data Structure.
///
[Serializable]
public class DeviceProductInfo : AopObject
{
///
/// 产品id
///
[XmlElement("product_id")]
public long ProductId { get; set; }
///
/// 产品名称
///
[XmlElement("product_name")]
public string ProductName { get; set; }
}
}