d5f5cf9b11
- Update modello dati x gestione nuovo DTO - bozza udpatre DB e servizio
24 lines
465 B
C#
24 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; }
|
|
|
|
}
|
|
}
|