Files
mapo-core/MP.Data/DbModels/Energy/MacchineEnergyCheckModel.cs
T
2026-05-04 09:51:40 +02:00

36 lines
850 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace MP.Data.DbModels.Energy
{
public class MacchineEnergyCheckModel
{
public string IdxMacchina { get; set; } = "";
/// <summary>
/// Nome macchina
/// </summary>
[MaxLength(50)]
public string Nome { get; set; } = "";
/// <summary>
/// Descrizione macchina
/// </summary>
public string Descrizione { get; set; } = "";
/// <summary>
/// DataOra ultimo evento
/// </summary>
public DateTime dtEvento { get; set; }
/// <summary>
/// Flusso registrato
/// </summary>
public string CodFlux { get; set; }
/// <summary>
/// Valore registrato
/// </summary>
public string Valore { get; set; }
}
}