using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ContentObjectRelationForOpenapi Data Structure.
///
[Serializable]
public class ContentObjectRelationForOpenapi : AopObject
{
///
/// 对象id,如关联店铺则是shopId
///
[XmlElement("object_id")]
public string ObjectId { get; set; }
///
/// 对象类型,内容的关联对象类型。 SHOP代表店铺, ITEM代表商品
///
[XmlElement("object_type")]
public string ObjectType { get; set; }
}
}