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

using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
namespace Mirle.Component.API.AutomatedGuideVehicleController.Models
{
/// <summary>
/// 心跳包回報類別
/// </summary>
/// <remarks>3.2.Heartbeat</remarks>
public class HeartbeatReportDto : CommonMessage
{
/// <summary>
/// 設備名稱/車號
/// </summary>
[Required, JsonPropertyName("device"), JsonPropertyOrder(101)]
public string Device { get; set; }
}
}