using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace EVCB_OCPP.Packet20.Messages
{
    public interface IRequest : IValidatable
    {
        string Action { get; set; }

        /// <summary>
        /// 是否是交易相關的Request
        /// </summary>
        /// <returns></returns>
        bool TransactionRelated();
    }
}