NewGaoKaoApi/PaymentSDK/AliPay/Domain/PriceInformation.cs

25 lines
619 B
C#
Raw 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>
/// PriceInformation Data Structure.
/// </summary>
[Serializable]
public class PriceInformation : AopObject
{
/// <summary>
/// 对应资产的金额比如88.66等。如果是现金,单位元
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 现金MONEY、家庭分FAMILY_POINT、会员分ANT_POINT等
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}