NewGaoKaoApi/PaymentSDK/AliPay/Domain/Product.cs

25 lines
701 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>
/// Product Data Structure.
/// </summary>
[Serializable]
public class Product : AopObject
{
/// <summary>
/// 油品编号。可设置的油品编号名称89#92#95#98#101#10#5#0#-10#-20#-35#-50#)。
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 油品价格(元/升),加油站列表页展示给用户。保留小数点后两位,单位元
/// </summary>
[XmlElement("price")]
public string Price { get; set; }
}
}