Files
mapo-core/MP.Data/DTO/FluxLogDTO.cs
T
zaccaria.majid 68183cb007 codemaid
2022-12-28 11:21:52 +01:00

17 lines
316 B
C#

using System;
namespace MP.Data.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; }
}
}