using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InsMktObjectDTO Data Structure.
///
[Serializable]
public class InsMktObjectDTO : AopObject
{
///
/// 活动标的id
///
[XmlElement("obj_id")]
public string ObjId { get; set; }
///
/// 标的类型
///
[XmlElement("type")]
public long Type { get; set; }
}
}