namespace OCPPServer
{
///
/// 需要被確認的數據包
///
public class NeedConfirmPacket
{
///
/// 資料庫的ID
///
public int Id { get; set; }
public string MachineCustomId { get; set; }
///
/// 傳送次數
///
public int SentTimes { get; set; }
///
/// 傳送間隔秒數
///
public int SentInterval { get; set; }
///
/// 送出訊息
///
public string SentMessage { get; set; }
///
/// 送出的UUID
///
public string SentUniqueId { get; set; }
/////
///// 送出的action
/////
public string SentAction { get; set; }
}
}