Files
magman/EgwProxy.MagMan/DTO/LogMachineDTO.cs
T
Samuele Locatelli 8a8018a8cc MagMan:
- aggiunta tab LogMachine + migrations
- aggiunto metodi sync
2024-04-27 11:41:44 +02:00

55 lines
1.3 KiB
C#

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