using EVCB_OCPP.Packet20.DataTypes; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace EVCB_OCPP.Packet20.Messages { public class AuthorizeRequest { /// /// This contains the identifier that needs to be /// authorized. /// [Required] public IdTokenType IdToken { set; get; } /// /// Contains the information needed to verify the /// EV Contract Certificate via OCSP. /// public List Iso15118CertificateHashData { set; get; } } }