20 lines
527 B
C#
20 lines
527 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayDataDataserviceAdUserbalanceOfflineResponse.
|
|
/// </summary>
|
|
public class AlipayDataDataserviceAdUserbalanceOfflineResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 操作成功投放账户id列表
|
|
/// </summary>
|
|
[XmlArray("success_user_id_list")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> SuccessUserIdList { get; set; }
|
|
}
|
|
}
|