12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.Packet20.Messages
- {
- public class PublishFirmwareRequest
- {
-
-
-
-
- [Required]
- [StringLength(512, MinimumLength = 0)]
- public string Location { set; get; }
-
-
-
-
-
-
- public int? Retries { set; get; }
-
-
-
-
- [Required]
- [StringLength(32, MinimumLength = 0)]
- public string Checksum { set; get; }
-
-
-
- [Required]
- public int RequestId { set; get; }
-
-
-
-
-
-
- public int? RetryInterval { set; get; }
- }
- }
|