using EVCB_OCPP.Packet.Features;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EVCB_OCPP.Packet.Messages
{
public interface IRequest:IValidatable
{
string Action { get; set; }
///
/// 是否是交易相關的Request
///
///
bool TransactionRelated();
}
}