NewGaoKaoApi/PaymentSDK/AliPay/Domain/OtherAmountInfos.cs

25 lines
599 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>
/// OtherAmountInfos Data Structure.
/// </summary>
[Serializable]
public class OtherAmountInfos : AopObject
{
/// <summary>
/// 费用金额
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
/// <summary>
/// 可枚举的类型。 SERVICE_FEE服务费 TABLE_FEE餐台费 OTHER其他费用
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}