using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EVCB_OCPP.WSServer.Dto
{
public class StationFee
{
///
/// 電樁顯示用費率
///
public string FeeName { set; get; }
///
/// 停車費
///
public decimal Fee { set; get; }
///
/// 幣別
///
public string Currency { set; get; }
}
}