18 lines
398 B
C#
18 lines
398 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingFacetofaceDecodeUseResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingFacetofaceDecodeUseResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 用户userId
|
|
/// </summary>
|
|
[XmlElement("user_id")]
|
|
public string UserId { get; set; }
|
|
}
|
|
}
|