Files
2025-03-14 17:30:34 +01:00

17 lines
316 B
C#

using System;
namespace MP.Core.DTO
{
public class FluxLogDTO
{
public string IdxMacchina { get; set; }
public DateTime dtEvento { get; set; }
public string CodFlux { get; set; }
public string Valore { get; set; }
public string ValoreEdit { get; set; }
}
}