You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
523 B

8 months ago
  1. using System.ComponentModel.DataAnnotations;
  2. using System.Text.Json.Serialization;
  3. namespace Mirle.Component.API.AutomatedGuideVehicleController.Models
  4. {
  5. /// <summary>
  6. /// 心跳包回報類別
  7. /// </summary>
  8. /// <remarks>3.2.Heartbeat</remarks>
  9. public class HeartbeatReportDto : CommonMessage
  10. {
  11. /// <summary>
  12. /// 設備名稱/車號
  13. /// </summary>
  14. [Required, JsonPropertyName("device"), JsonPropertyOrder(101)]
  15. public string Device { get; set; }
  16. }
  17. }