15 lines
365 B
C#
15 lines
365 B
C#
namespace MP.Core.DTO
|
|
{
|
|
public class FluxLogDTO
|
|
{
|
|
public string IdxMacchina { get; set; } = string.Empty;
|
|
|
|
public DateTime dtEvento { get; set; }
|
|
|
|
public string CodFlux { get; set; } = string.Empty;
|
|
|
|
public string Valore { get; set; } = string.Empty;
|
|
|
|
public string ValoreEdit { get; set; } = string.Empty;
|
|
}
|
|
} |