17 lines
316 B
C#
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; }
|
|
}
|
|
} |