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