1234567891011121314151617 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
- /// <summary>
- /// AlipayToolsFileUploadResponse.
- /// </summary>
- public class AlipayToolsFileUploadResponse : AopResponse
- {
- /// <summary>
- /// 文件地址
- /// </summary>
- [XmlElement("file_url")]
- public string FileUrl { get; set; }
- }
- }
|