NewGaoKaoApi/PaymentSDK/AliPay/Domain/AssetSubFeedbackInfo.cs

31 lines
690 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AssetSubFeedbackInfo Data Structure.
/// </summary>
[Serializable]
public class AssetSubFeedbackInfo : AopObject
{
/// <summary>
/// 返回的信息code
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 返回值的描述
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 具体的值例如SN号
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}