24 lines
655 B
C#
24 lines
655 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayMerchantItemFileUploadResponse.
|
||
/// </summary>
|
||
public class AlipayMerchantItemFileUploadResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 文件在商品中心的素材标识(素材ID长期有效)
|
||
/// </summary>
|
||
[XmlElement("material_id")]
|
||
public string MaterialId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 文件在商品中心的素材标示,创建/更新商品时使用
|
||
/// </summary>
|
||
[XmlElement("material_key")]
|
||
public string MaterialKey { get; set; }
|
||
}
|
||
}
|