18 lines
416 B
C#
18 lines
416 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingDataEnterpriseStaffinfoUploadResponse.
|
|
/// </summary>
|
|
public class KoubeiMarketingDataEnterpriseStaffinfoUploadResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 人群ID
|
|
/// </summary>
|
|
[XmlElement("crowd_id")]
|
|
public string CrowdId { get; set; }
|
|
}
|
|
}
|