using EVCB_OCPP.Packet.Features.Core; using EVCB_OCPP.Packet.Messages.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EVCB_OCPP.Packet.Features.Core { public class DataTransferFeature : Feature { public override string GetAction() { return Actions.DataTransfer.ToString(); } public override Type GetConfirmationType() { return typeof(DataTransferConfirmation); } public override Type GetRequestType() { return typeof(DataTransferRequest); } } }