using System.Collections.Generic;
namespace MapoSDK
{
///
/// Tracciato UserLog in formato JSON valido
///
public class ulogData : evData
{
#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
}
///
/// Array valori tipo flogData inviati come JSon
///
public class ulogJsonPayload
{
#region Public Properties
public List fluxData { get; set; }
#endregion Public Properties
}
}