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 ClearCacheFeature : Feature
    {
        public override string GetAction()
        {
            return Actions.ClearCache.ToString();
        }

        public override Type GetConfirmationType()
        {
            return typeof(ClearCacheConfirmation);
        }

        public override Type GetRequestType()
        {
            return typeof(ClearCacheRequest);
        }
    }
}