using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MagMan.Core.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 Enums.MachLogTypes EvType { get; set; } = Enums.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; } = ""; } }