SetMonitoringLevelRequest.cs 614 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EVCB_OCPP.Packet20.Messages
  8. {
  9. public class SetMonitoringLevelRequest
  10. {
  11. /// <summary>
  12. /// Required. The Charging Station SHALL only report events
  13. // with a severity number lower than or equal to this
  14. // severity.The severity range is 0-9, with 0 as the highest
  15. // and 9 as the lowest severity level.
  16. /// </summary>
  17. [Required]
  18. public int Severity { set; get; }
  19. }
  20. }