using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
public class RateAPIDate
{
public string Name { get; set; }
///
/// 汇率接口API实体类
///
///
public RateAPI rateAPI { get; set; }
}
public class RateAPI
{
///
/// /*货币名称*/
///
public string name { get; set; }
///
/// /*现汇买入价*/
///
public double fBuyPri { get; set; }
///
/// /*现钞买入价*/
///
public double mBuyPri { get; set; }
///
/// /*现汇卖出价*/
///
public double fSellPri { get; set; }
///
/// /*现钞卖出价*/
///
public double mSellPri { get; set; }
///
/// /*银行折算价/中间价*/
///
public double bankConversionPri { get; set; }
///
/// /*发布日期*/
///
public string date { get; set; }
///
/// /*发布时间*/
///
public string time { get; set; }
}
}