using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ItermInfo Data Structure.
///
[Serializable]
public class ItermInfo : AopObject
{
///
/// 更新时系统异常,返回错误详细信息
///
[XmlElement("error_message")]
public string ErrorMessage { get; set; }
///
/// 充值面额的状态Y/N
///
[XmlElement("is_for_sale")]
public string IsForSale { get; set; }
///
/// 面额的code,唯一标示码
///
[XmlElement("item_code")]
public string ItemCode { get; set; }
///
/// 售价,比如100的面额,卖99元
///
[XmlElement("mark_price")]
public string MarkPrice { get; set; }
///
/// 针对更新时,是否更新成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// 手机充值的面额价格
///
[XmlElement("supplier_price")]
public string SupplierPrice { get; set; }
}
}