using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EVCB_OCPP.WSServer.Dto
{
public class StationFee
{
///
/// 收費方式 1: 以度計費 2:以小時計費
///
public int BillingMethod { set; get; }
///
/// 電樁顯示用費率
///
public string FeeName { set; get; }
///
/// 停車費
///
public decimal ParkingFee { set; get; }
///
/// 幣別
///
public string Currency { set; get; }
///
/// 充電費率 以小時計費
///
public decimal ChargingFeebyHour { set; get; }
}
}