namespace MP.Core.DTO { /// /// Tracciato UserLog in formato JSON valido /// public class ULogDataDto : EvDataDto { #region Public Properties /// /// Nome del flusso (RC/RS/DI) /// public string flux { get; set; } = "DI"; /// /// [OPZIONALE] label = causale scarto / tagCode /// public string label { get; set; } = ""; /// /// Operatore di riferimento /// public int matrOpr { get; set; } = 0; /// /// [OPZIONALE] valNum = esitoOk (0/1) / Quantità di scarto associata /// public int valNum { get; set; } = 0; #endregion Public Properties } }