12345678910111213141516171819202122232425262728293031323334353637 |
- using EVCB_OCPP.Packet.Utilities;
- using EVCB_OCPP.Packet.Messages.SubTypes;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.Packet.Messages.Core
- {
- public class GetConfigurationConfirmation : IConfirmation
- {
- public List<KeyValue> configurationKey { set; get; }
- public List<string> unknownKey { set; get; }
- private IRequest _request = null;
-
- public IRequest GetRequest()
- {
- return _request;
- }
- public void SetRequest(IRequest request)
- {
- _request = request;
- }
- public bool Validate()
- {
- return Validator.TryValidateObject(this, new ValidationContext(this), null, true);
- }
- }
- }
|