using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MagData { /// /// Valori decodificati /// public class decodedData { /// /// Tipo codice decodificato /// public codeType codeType { get; set; } = codeType.UNK; /// /// Codice decodificato /// public string code { get; set; } = ""; /// /// Codice decodificato in formato INT /// public int codeInt { get; set; } = 0; /// /// Descrizione associata /// public string description { get; set; } = ""; /// /// Dato letto RAW /// public string rawData { get; set; } = ""; } /// /// Oggetto dei dati di produzione attuali (per serializzazione json) /// public class prodData { /// /// Cod Cliente corrente /// public string CodCli { get; set; } = ""; /// /// Cod operatore corrente /// public string CodOpr { get; set; } = ""; /// /// Cod Postazione corrente /// public string CodPost { get; set; } = ""; /// /// Cod Articolo corrente /// public string CurrArtCod { get; set; } = ""; /// /// Descrizione Articolo corrente /// public string CurrArtDesc { get; set; } = ""; /// /// Codice ODL corrente /// public string CurrODL { get; set; } = ""; /// /// Codice riferimento esterno produzione /// public string RifExt { get; set; } = ""; /// /// Coda di stampa attiva /// public string PrintQueue { get; set; } = ""; } }