using System;
namespace EgwProxy.MagMan.DTO
{
//
// This is here so CodeMaid doesn't reorganize this document
//
public class LogMachineDTO
{
///
/// Key di riferimento per il progetto
///
public int KeyNum { get; set; } = 0;
///
/// ID Macchina (cloud)
///
public int MachineCloudId { get; set; } = 0;
///
/// Key progetto (DB) / CLOUD
///
public int ProjCloudId { get; set; } = 0;
#if false
///
/// ID del DB EgtBW, univoco con KeyNum, (DB) / istanza locale
///
public int ProjLocalId { get; set; } = 0;
#endif
///
/// Stato da enum
///
public MachLogTypes EvType { get; set; } = MachLogTypes.NULL;
///
/// Data Evento
///
public DateTime DtEvent { get; set; } = DateTime.Now;
///
/// Indirizzo VAR (Supervisore)
///
public string VarAddress { get; set; } = "";
///
/// Valore VAR
///
public string VarValue { get; set; } = "";
}
}